diff --git a/test/functional/rpc_verifychainlock.py b/test/functional/rpc_verifychainlock.py index a11aba3adc..6372eddaa1 100755 --- a/test/functional/rpc_verifychainlock.py +++ b/test/functional/rpc_verifychainlock.py @@ -65,7 +65,7 @@ def run_test(self): tx1 = node1.getblock(node1.getbestblockhash())['tx'][0] locks0 = node0.gettxchainlocks([tx0, tx1]) locks1 = node1.gettxchainlocks([tx0, tx1]) - unknown_cl_helper = {'height': -1, 'chainlock': False} + unknown_cl_helper = None assert_equal(locks0, [{'height': height, 'chainlock': True}, unknown_cl_helper]) assert_equal(locks1, [unknown_cl_helper, {'height': height1, 'chainlock': False}])