Remove wallets being initialized with sequence

This commit is contained in:
JST5000
2023-06-06 16:46:59 -07:00
parent 57ff619f98
commit a5f3d15778
13 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ seed = ""
custom_wallet = None
if seed:
custom_wallet = Wallet(seed=seed, sequence=0)
custom_wallet = Wallet.from_seed(seed=seed)
# Connect to a testnet node
print("Connecting to Testnet...")