Skip to content

Commit

Permalink
Fix marking the successfully added spend bundles to the reinitialized…
Browse files Browse the repository at this point in the history
… mempool (the non optimized case) as seen when a new peak is available. (#13613)
  • Loading branch information
AmineKhaldi authored Oct 5, 2022
1 parent 7a5d957 commit 2b2a1e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/full_node/mempool_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ async def new_peak(
# successfully added to the new mempool. In this case, remove it from seen, so in the case of a reorg,
# it can be resubmitted
if result == MempoolInclusionStatus.SUCCESS:
self.seen(item.spend_bundle_name)
self.add_and_maybe_pop_seen(item.spend_bundle_name)

potential_txs = self.potential_cache.drain()
txs_added = []
Expand Down

0 comments on commit 2b2a1e8

Please sign in to comment.