remove escrow link

This commit is contained in:
Ryan G. Young
2021-03-31 13:07:26 -07:00
parent 57b9081e4b
commit bd7aa7cf86
2 changed files with 7 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ print("X-address:\n\n", test_xaddress)
from xrpl.models.requests.account_info import AccountInfo from xrpl.models.requests.account_info import AccountInfo
acct_info = AccountInfo( acct_info = AccountInfo(
account=test_account, account=test_account,
ledger_index="validated", ledger_index="current",
queue=True, queue=True,
strict=True, strict=True,
) )

View File

@@ -233,8 +233,12 @@ For a detailed description of every response field, see [account_info](account_i
## Keep on building ## 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). * [Send XRP](send-xrp.html).
* [Set up secure signing](set-up-secure-signing.html) for your account. * [Set up secure signing](set-up-secure-signing.html) for your account.
* [Create an escrow](use-escrows.html).