From 4215992a2290e9d02426d5fcc7c635c769710e65 Mon Sep 17 00:00:00 2001 From: almogdepaz Date: Mon, 20 Jan 2025 11:37:57 +0200 Subject: [PATCH] lint --- chia/_tests/util/full_sync.py | 2 +- tools/test_full_sync.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chia/_tests/util/full_sync.py b/chia/_tests/util/full_sync.py index 4d07f41d386b..8db74afe7baa 100644 --- a/chia/_tests/util/full_sync.py +++ b/chia/_tests/util/full_sync.py @@ -218,7 +218,7 @@ async def run_sync_test( peer_info, ForkInfo(fork_height, fork_height, header_hash), ValidationState(ssi, diff, None), - blockchain + blockchain, ) end_height = block_batch[-1].height full_node.blockchain.clean_block_record(end_height - full_node.constants.BLOCKS_CACHE_SIZE) diff --git a/tools/test_full_sync.py b/tools/test_full_sync.py index b19e7cbfcc3c..9eb75ef222e5 100755 --- a/tools/test_full_sync.py +++ b/tools/test_full_sync.py @@ -171,7 +171,7 @@ async def run_sync_checkpoint( peer_info, ForkInfo(fork_height, fork_height, header_hash), ValidationState(ssi, diff, None), - blockchain + blockchain, ) end_height = block_batch[-1].height full_node.blockchain.clean_block_record(end_height - full_node.constants.BLOCKS_CACHE_SIZE) @@ -195,7 +195,7 @@ async def run_sync_checkpoint( peer_info, ForkInfo(fork_height, fork_height, fork_header_hash), ValidationState(ssi, diff, None), - blockchain + blockchain, ) if not success: raise RuntimeError("failed to ingest block batch")