From 92f13675b8cef7b72840750205f5eddc00eb449d Mon Sep 17 00:00:00 2001 From: Odysseas Gabrielides Date: Wed, 29 Nov 2023 11:16:34 +0200 Subject: [PATCH] adapted rpc_verifychainlock to change --- test/functional/rpc_verifychainlock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}])