From 083c1e5d30b8a4286a1fb5771b156857576f24cc Mon Sep 17 00:00:00 2001 From: voidash Date: Tue, 14 Jan 2025 18:20:51 +0545 Subject: [PATCH] fix: rebase error revert --- .../tests/fn_bridge_deposit_seq_unreliable.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/functional-tests/tests/fn_bridge_deposit_seq_unreliable.py b/functional-tests/tests/fn_bridge_deposit_seq_unreliable.py index 9d466eba0..05ff41552 100644 --- a/functional-tests/tests/fn_bridge_deposit_seq_unreliable.py +++ b/functional-tests/tests/fn_bridge_deposit_seq_unreliable.py @@ -2,7 +2,7 @@ from envs import testenv from envs.rollup_params_cfg import RollupConfig -from utils import get_bridge_pubkey, wait_until, wait_until_with_value +from utils import check_sequencer_down, get_bridge_pubkey, wait_until, wait_until_with_value from utils.constants import SATS_TO_WEI @@ -58,14 +58,3 @@ def main(self, ctx: flexitest.RunContext): self.debug(f"Strata Balance after deposits: {balance_after_deposits}") return True - - -def check_sequencer_down(seqrpc): - """ - Returns True if sequencer RPC is down - """ - try: - seqrpc.strata_protocolVersion() - return False - except RuntimeError: - return True