Skip to content

Commit b241078

Browse files
committed
Increase the allowed duration for spend bundle validation.
1 parent b1cc0a5 commit b241078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/full_node/mempool_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ async def validate_spend_bundle(
787787
f"Cost: {cost} ({round(100.0 * cost / self.constants.MAX_BLOCK_COST_CLVM, 3)}% of max block cost)",
788788
)
789789

790-
if duration > 2:
790+
if duration > 3:
791791
log.warning("validating spend took too long, rejecting")
792792
return Err.INVALID_SPEND_BUNDLE, None, []
793793

0 commit comments

Comments
 (0)