From 4fe11435ba4211b3d5ec64f928ab3b6e920fa78a Mon Sep 17 00:00:00 2001 From: Obiajulu <47371105+ObiajuluM@users.noreply.github.com> Date: Tue, 6 Sep 2022 21:02:39 -0700 Subject: [PATCH] Update account_escrows.py --- content/_code-samples/escrow/py/account_escrows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_code-samples/escrow/py/account_escrows.py b/content/_code-samples/escrow/py/account_escrows.py index b9e1665244..21b0e43740 100644 --- a/content/_code-samples/escrow/py/account_escrows.py +++ b/content/_code-samples/escrow/py/account_escrows.py @@ -1,12 +1,12 @@ +from xrpl.clients import JsonRpcClient from xrpl.models import AccountObjects from xrpl.utils import drops_to_xrp, ripple_time_to_datetime -from xrpl.clients import JsonRpcClient # Retreive all escrows created or received by an account, formatted client = JsonRpcClient("https://s.altnet.rippletest.net:51234") # connect to the testnetwork -account_address = "rxxxxxxxxxxxxxxxxxxxxxxxx" +account_address = "r9CEVt4Cmcjt68ME6GKyhf2DyEGo2rG8AW" escrow_dict = {} # a dict to store all escrows sent = [] # a list to store sent/ created escrows