Add amounts onchain txs

This commit is contained in:
curly60e 2021-05-31 15:02:28 -03:00 committed by GitHub
parent fd2174e47d
commit c8ba616ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: