usage of send_reliable_submission

Co-authored-by: LimpidCrypto <97235361+LimpidCrypto@users.noreply.github.com>
This commit is contained in:
Wo Jake
2022-09-04 16:13:33 +00:00
committed by GitHub
parent 9d2d7ffdf0
commit befb872e3b

View File

@@ -21,7 +21,9 @@ tx = AccountSet(
)
# Sign the transaction locally & submit transaction and verify its validity on the ledger
my_tx_payment_signed = safe_sign_and_submit_transaction(transaction=tx, wallet=wallet_from_seed, client=client)
my_tx_payment_signed = safe_sign_transaction(transaction=tx, wallet=wallet_from_seed)
response = send_reliable_submission(transaction=my_tx_payment_signed, client=client)
result = response.result["engine_result"]
my_tx_payment_signed = my_tx_payment_signed.result
result = my_tx_payment_signed["engine_result"]