Remove unused wallet_height_at_least (#17213)

Remove unused wallet_height_at_least.
This commit is contained in:
Amine Khaldi 2024-01-09 16:07:49 +01:00 committed by GitHub
parent f085e94dec
commit 12ab2b8a2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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__)