diff --git a/tests/_test_helpers/node.py b/tests/_test_helpers/node.py index c1d5183..3e487d9 100644 --- a/tests/_test_helpers/node.py +++ b/tests/_test_helpers/node.py @@ -187,7 +187,7 @@ def __init__(self, @cached_property def secrets(self) -> List[str]: - secrets = [Account.create().key.hex()] + secrets = [] return secrets def _wait_for_embedded_tx_finished(self): @@ -201,5 +201,5 @@ def __init__(self) -> None: def secrets(self) -> List[str]: testnet_secret = os.environ.get("TESTNET_SECRET", None) if not testnet_secret: - return [Account.create().key.hex()] + return [] return [testnet_secret]