test: [refactor] Use verbosity=0 named arg

This is less confusing than the verbose=0 alias.
This commit is contained in:
MarcoFalke
2026-03-18 16:19:10 +01:00
parent 99996f6c06
commit faf71d6cb4

View File

@@ -729,7 +729,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)