We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d20c93 commit 154005eCopy full SHA for 154005e
main.py
@@ -57,7 +57,7 @@ async def send_coins(beg: Beg):
57
)
58
59
signed_txn = w3.eth.account.sign_transaction(bs_txn, private_key=private_key)
60
- broadcasted_txn = w3.eth.sendRawTransaction(signed_txn.rawTransacttion)
+ broadcasted_txn = w3.eth.sendRawTransaction(signed_txn.rawTransaction)
61
logging.info("Transaction hex: " + repr(signed_txn.hash.hex()))
62
return {"recipient": to_address, "tx_hash": signed_txn.hash.hex()}
63
0 commit comments