test: [refactor] Use verbosity=0 named arg

This is less confusing than the verbose=0 alias.

Github-Pull: #34852
Rebased-From: faf71d6cb4
This commit is contained in:
MarcoFalke
2026-03-18 16:19:10 +01:00
committed by fanquake
parent 8379f005da
commit 068951211c

View File

@@ -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)