Update param order for autofill_and_sign and sign_and_submit

This commit is contained in:
JST5000
2023-06-15 15:42:03 -07:00
parent 445b58bdd5
commit 968df9d379
12 changed files with 13 additions and 13 deletions

View File

@@ -26,7 +26,7 @@ print("Payment object:", my_payment)
# Sign transaction -------------------------------------------------------------
signed_tx = xrpl.transaction.autofill_and_sign(
my_payment, test_wallet, client)
my_payment, client, test_wallet)
max_ledger = signed_tx.last_ledger_sequence
tx_id = signed_tx.get_hash()
print("Signed transaction:", signed_tx)