diff --git a/content/_code-samples/xrpl-py/get-acct-info.py b/content/_code-samples/xrpl-py/get-acct-info.py index 1c5e031213..148f449951 100644 --- a/content/_code-samples/xrpl-py/get-acct-info.py +++ b/content/_code-samples/xrpl-py/get-acct-info.py @@ -24,7 +24,7 @@ print("X-address:\n\n", test_xaddress) from xrpl.models.requests.account_info import AccountInfo acct_info = AccountInfo( account=test_account, - ledger_index="validated", + ledger_index="current", queue=True, strict=True, ) diff --git a/content/tutorials/get-started/get-started-using-python.md b/content/tutorials/get-started/get-started-using-python.md index 1689a9cb73..3ad44bd07f 100644 --- a/content/tutorials/get-started/get-started-using-python.md +++ b/content/tutorials/get-started/get-started-using-python.md @@ -233,8 +233,12 @@ For a detailed description of every response field, see [account_info](account_i ## Keep on building -Use `xrpl-py` to: +Now that you know how to use `xrpl-py` to connect to the XRP Ledger, generate a wallet, and look up information about an account, you can also use `xrpl-py` to: * [Send XRP](send-xrp.html). * [Set up secure signing](set-up-secure-signing.html) for your account. -* [Create an escrow](use-escrows.html). + + + + +