Update relay-transaction.py

This commit is contained in:
Wo Jake
2022-11-11 07:23:23 +00:00
committed by GitHub
parent fa00126084
commit 93bfbaa27f

View File

@@ -43,5 +43,8 @@ def send_transaction(transaction_dict):
if __name__ == '__main__':
tx = "ENTER TX BLOB HERE"
send_transaction(tx)
tx_blob = "ENTER TX BLOB HERE"
if tx_blob is "ENTER TX BLOB HERE":
print("Set tx to 'tx_blob' received from scanning the QR code generated by the airgapped wallet")
send_transaction(tx_blob)