From dd13c190941f05b48a242411bf8f8d42cede7d3c Mon Sep 17 00:00:00 2001 From: Brord van Wierst Date: Fri, 8 Dec 2023 18:17:11 +0100 Subject: [PATCH] update comment --- .../how_tos/account_output/implicit_account_creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/examples/how_tos/account_output/implicit_account_creation.py b/bindings/python/examples/how_tos/account_output/implicit_account_creation.py index 96f21f2b10..d6c5400509 100644 --- a/bindings/python/examples/how_tos/account_output/implicit_account_creation.py +++ b/bindings/python/examples/how_tos/account_output/implicit_account_creation.py @@ -13,6 +13,6 @@ wallet = Wallet(WalletOptions(storage_path=os.environ.get('WALLET_DB_PATH'))) -# Sync account with the node +# Get the implicit account address address = wallet.implicit_account_creation_address() print(f'Fund the following address: {address}')