Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
44cd9a84
Commit
44cd9a84
authored
10 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Transactions refused now appear in red
parent
a8f625e6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/cutecoin/core/transfer.py
+7
-2
7 additions, 2 deletions
src/cutecoin/core/transfer.py
src/cutecoin/core/wallet.py
+12
-10
12 additions, 10 deletions
src/cutecoin/core/wallet.py
src/cutecoin/models/txhistory.py
+8
-2
8 additions, 2 deletions
src/cutecoin/models/txhistory.py
with
27 additions
and
14 deletions
src/cutecoin/core/transfer.py
+
7
−
2
View file @
44cd9a84
...
...
@@ -3,7 +3,7 @@ Created on 31 janv. 2015
@author: inso
'''
import
logging
from
ucoinpy.api
import
bma
from
ucoinpy.documents.transaction
import
Transaction
...
...
@@ -65,10 +65,15 @@ class Transfer(object):
self
.
metadata
[
'
time
'
]
=
community
.
get_block
().
time
def
check_registered
(
self
,
tx
,
metadata
):
logging
.
debug
(
"
{0} > {1} ?
"
.
format
(
metadata
[
'
block
'
],
self
.
metadata
[
'
block
'
]
+
15
))
if
tx
.
signed_raw
()
==
self
.
txdoc
.
signed_raw
():
self
.
state
=
Transfer
.
VALIDATED
self
.
metadata
=
metadata
if
metadata
[
'
block
'
]
>
self
.
metadata
[
'
block
'
]
+
15
:
def
check_refused
(
self
,
block
):
if
block
>
self
.
metadata
[
'
block
'
]
+
15
:
self
.
state
=
Transfer
.
REFUSED
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/core/wallet.py
+
12
−
10
View file @
44cd9a84
...
...
@@ -59,14 +59,15 @@ class Cache():
def
refresh
(
self
,
community
):
current_block
=
0
try
:
try
:
block_data
=
community
.
request
(
bma
.
blockchain
.
Current
)
current_block
=
block_data
[
'
number
'
]
except
ValueError
as
e
:
if
'
404
'
in
str
(
e
):
current_block
=
0
else
:
raise
block_data
=
community
.
current_blockid
()
current_block
=
block_data
[
'
number
'
]
# Lets look if transactions took too long to be validated
awaiting
=
[
t
for
t
in
self
.
_transfers
if
t
.
state
==
Transfer
.
AWAITING
]
for
transfer
in
awaiting
:
transfer
.
check_refused
(
current_block
)
with_tx
=
community
.
request
(
bma
.
blockchain
.
TX
)
# We parse only blocks with transactions
...
...
@@ -109,8 +110,9 @@ class Cache():
if
tx
.
signed_raw
()
not
in
awaiting_docs
:
transfer
=
Transfer
.
create_validated
(
tx
,
metadata
)
self
.
_transfers
.
append
(
transfer
)
for
transfer
in
awaiting
:
transfer
.
check_registered
(
tx
,
metadata
)
else
:
for
transfer
in
awaiting
:
transfer
.
check_registered
(
tx
,
metadata
)
else
:
outputs
=
[
o
for
o
in
tx
.
outputs
if
o
.
pubkey
==
self
.
wallet
.
pubkey
]
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/models/txhistory.py
+
8
−
2
View file @
44cd9a84
...
...
@@ -9,8 +9,8 @@ from ..core.transfer import Transfer, Received
from
..core.person
import
Person
from
..tools.exceptions
import
PersonNotFoundError
from
PyQt5.QtCore
import
QAbstractTableModel
,
Qt
,
QVariant
,
QSortFilterProxyModel
,
\
QDateTime
,
QModelIndex
from
PyQt5.QtGui
import
QFont
QDateTime
from
PyQt5.QtGui
import
QFont
,
QColor
class
TxFilterProxyModel
(
QSortFilterProxyModel
):
...
...
@@ -147,9 +147,15 @@ class HistoryTableModel(QAbstractTableModel):
font
=
QFont
()
if
transfer
.
state
==
Transfer
.
AWAITING
:
font
.
setItalic
(
True
)
elif
transfer
.
state
==
Transfer
.
REFUSED
:
font
.
setItalic
(
True
)
else
:
font
.
setItalic
(
False
)
return
font
if
role
==
Qt
.
ForegroundRole
:
if
transfer
.
state
==
Transfer
.
REFUSED
:
return
QColor
(
Qt
.
red
)
def
flags
(
self
,
index
):
return
Qt
.
ItemIsSelectable
|
Qt
.
ItemIsEnabled
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment