Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
matograine
silkaj
Commits
9f018b76
Commit
9f018b76
authored
Mar 17, 2019
by
Moul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mod] tx confirmation: "pubkey’s balance" is a more correct English
parent
094e8226
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
silkaj/tx.py
silkaj/tx.py
+2
-2
No files found.
silkaj/tx.py
View file @
9f018b76
...
...
@@ -135,7 +135,7 @@ async def transaction_confirmation(
currency_symbol
=
await
CurrencySymbol
().
symbol
tx
=
list
()
tx
.
append
(
[
"pubkey’s
amount
before tx"
,
str
(
pubkey_amount
/
100
)
+
" "
+
currency_symbol
]
[
"pubkey’s
balance
before tx"
,
str
(
pubkey_amount
/
100
)
+
" "
+
currency_symbol
]
)
tx
.
append
(
[
...
...
@@ -153,7 +153,7 @@ async def transaction_confirmation(
)
tx
.
append
(
[
"pubkey’s
amount
after tx"
,
"pubkey’s
balance
after tx"
,
str
(((
pubkey_amount
-
tx_amount
*
len
(
outputAddresses
))
/
100
))
+
" "
+
currency_symbol
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment