Skip to content

Commit

Permalink
Fix: rpc_blockchain.py test
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Jun 5, 2024
1 parent 8d554f3 commit 6c03c7c
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions test/functional/rpc_blockchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
}
})
Expand Down

0 comments on commit 6c03c7c

Please sign in to comment.