From 71d46211d5590eb3720492c4e0bddd5eed43f81e Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:36:23 +0800 Subject: [PATCH] fix(ci): testnet fails --- tests/_test_helpers/node.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]