From 57b9081e4b40d3c64ec3ac4900abb341639020cb Mon Sep 17 00:00:00 2001 From: "Ryan G. Young" Date: Wed, 31 Mar 2021 10:37:59 -0700 Subject: [PATCH] change current to validated for ledger --- content/_code-samples/xrpl-py/get-acct-info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_code-samples/xrpl-py/get-acct-info.py b/content/_code-samples/xrpl-py/get-acct-info.py index 148f449951..1c5e031213 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="current", + ledger_index="validated", queue=True, strict=True, )