From 068951211cf3c757bfb0366c7b34c04a661555fc Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Wed, 18 Mar 2026 16:19:10 +0100 Subject: [PATCH] test: [refactor] Use verbosity=0 named arg This is less confusing than the verbose=0 alias. Github-Pull: #34852 Rebased-From: faf71d6cb49b8a668c417d80bc56277f30cbf2e1 --- test/functional/test_framework/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 3a6346a3d91..d2d5d56fbf7 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -726,7 +726,7 @@ def dumb_sync_blocks(*, src, dst, height=None): height = height or src.getblockcount() for i in range(dst.getblockcount() + 1, height + 1): block_hash = src.getblockhash(i) - block = src.getblock(blockhash=block_hash, verbose=0) + block = src.getblock(blockhash=block_hash, verbosity=0) dst.submitblock(block) assert_equal(dst.getblockcount(), height)