We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5755f1 commit 75ec747Copy full SHA for 75ec747
main.py
@@ -43,6 +43,7 @@ async def send_coins(beg: Beg):
43
44
signed_txn = w3.eth.account.sign_transaction(bs_txn, private_key=private_key)
45
broadcasted_txn = w3.eth.sendRawTransaction(signed_txn.rawTransaction)
46
+ print(repr(broadcasted_txn))
47
return {"recipient": to_address, "tx_hash": signed_txn.hash.hex()}
48
49
0 commit comments