Skip to content

Commit 23ad961

Browse files
authored
CHIA-3736 Avoid recomputing skipped transaction ID in create_bundle_from_mempool_items (#20055)
Avoid recomputing skipped transaction ID in create_bundle_from_mempool_items.
1 parent c1d15df commit 23ad961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/full_node/mempool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def create_bundle_from_mempool_items(
613613
if any(
614614
sd.eligible_for_dedup or sd.eligible_for_fast_forward for sd in item.bundle_coin_spends.values()
615615
):
616-
log.info(f"Skipping transaction with dedup or FF spends {item.spend_bundle.name()}")
616+
log.info(f"Skipping transaction with dedup or FF spends {name}")
617617
continue
618618

619619
unique_coin_spends = []

0 commit comments

Comments
 (0)