From 6c03c7c09d2451b19ceb38491f9565d1bd9e3b96 Mon Sep 17 00:00:00 2001 From: meherett Date: Wed, 5 Jun 2024 15:26:56 +0300 Subject: [PATCH] Fix: rpc_blockchain.py test --- test/functional/rpc_blockchain.py | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 7aaff0ec07..6a55e01fdd 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -205,37 +205,29 @@ def check_signalling_deploymentinfo_result(self, gdi_result, height, blockhash, 'segwit': {'type': 'buried', 'active': True, 'height': 0}, 'testdummy': { 'type': 'bip9', + 'height': 432, + 'active': True, 'bip9': { - 'bit': 28, 'start_time': 0, 'timeout': 9223372036854775807, 'min_activation_height': 0, - 'status': 'started', - 'status_next': status_next, + 'status': 'active', 'since': 432, - 'statistics': { - 'period': 144, - 'threshold': 108, - 'elapsed': height - 143, - 'count': height - 143, - 'possible': True, - }, - 'signalling': '#'*(height-143), - }, - 'active': False + 'status_next': 'active' + } }, 'taproot': { 'type': 'bip9', + 'height': 0, + 'active': True, 'bip9': { 'start_time': -1, 'timeout': 9223372036854775807, 'min_activation_height': 0, 'status': 'active', - 'status_next': 'active', 'since': 0, - }, - 'height': 0, - 'active': True + 'status_next': 'active' + } } } })