Skip to content

Commit

Permalink
fix(ci): testnet fails
Browse files Browse the repository at this point in the history
  • Loading branch information
darwintree committed Dec 17, 2024
1 parent f884881 commit 71d4621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/_test_helpers/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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]

0 comments on commit 71d4621

Please sign in to comment.