From c699a2a20ea149cb215fd125f5df6b3fdcd3cade Mon Sep 17 00:00:00 2001 From: olivernyc Date: Wed, 6 Jul 2022 01:49:27 +0200 Subject: [PATCH] Fix misleading argument name (#12180) --- chia/consensus/blockchain_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/consensus/blockchain_interface.py b/chia/consensus/blockchain_interface.py index dccc6d42650f..bbb2524bcadc 100644 --- a/chia/consensus/blockchain_interface.py +++ b/chia/consensus/blockchain_interface.py @@ -71,7 +71,7 @@ class BlockchainInterface: return None async def persist_sub_epoch_challenge_segments( - self, sub_epoch_summary_height: bytes32, segments: List[SubEpochChallengeSegment] + self, sub_epoch_summary_hash: bytes32, segments: List[SubEpochChallengeSegment] ) -> None: pass