Remove unused wallet_height_at_least (#17213)

Remove unused wallet_height_at_least.
This commit is contained in:
Amine Khaldi
2024-01-09 09:07:49 -06:00
committed by GitHub
parent f085e94dec
commit 12ab2b8a2e
@@ -30,14 +30,6 @@ from tests.connection_utils import add_dummy_connection
from tests.util.setup_nodes import OldSimulatorsAndWallets
from tests.util.time_out_assert import time_out_assert
def wallet_height_at_least(wallet_node, h):
height = wallet_node.wallet_state_manager.blockchain._peak_height
if height == h:
return True
return False
log = getLogger(__name__)