mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-19 13:18:13 +02:00
Add amounts onchain txs
This commit is contained in:
parent
fd2174e47d
commit
c8ba616ac7
1 changed files with 2 additions and 2 deletions
|
|
@ -314,7 +314,7 @@ def locallistchaintxns():
|
|||
for item_ in n:
|
||||
s = item_
|
||||
|
||||
print("Transaction Hash: " + s['tx_hash'])
|
||||
print("Transaction Hash: " + s['tx_hash'] + " " + s['amount'] + " sats")
|
||||
nd = input("\nSelect RHash: ")
|
||||
|
||||
for item in n:
|
||||
|
|
@ -1154,7 +1154,7 @@ def listonchaintxs():
|
|||
print("\n\tLIST ONCHAIN TRANSACTIONS\n")
|
||||
for r in range(len(n)):
|
||||
s = n[r]
|
||||
print("Transaction Hash: " + s['tx_hash'])
|
||||
print("Transaction Hash: " + " " + s['tx_hash'] + " sats")
|
||||
nd = input("\nSelect RHash: ")
|
||||
|
||||
for item in n:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue