Skip to content

Commit

Permalink
adapted rpc_verifychainlock to change
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Nov 29, 2023
1 parent a56f808 commit 92f1367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/rpc_verifychainlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}])

Expand Down

0 comments on commit 92f1367

Please sign in to comment.