-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CHIA-2381 Validate fast forward spends before adding their spend bundle to the mempool #19272
CHIA-2381 Validate fast forward spends before adding their spend bundle to the mempool #19272
Conversation
01f2443
to
313c6e4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my main comment is around the relationship of is_eligible_for_ff
and ff_puzzle_hash
. It seems like it could be stricter, or maybe merged into a single field
313c6e4
to
81b6e5d
Compare
81b6e5d
to
51339fb
Compare
51339fb
to
1639fdd
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
…mempool. Make sure that all fast forward spends of a spend bundle would still have unspent coins.
1639fdd
to
a6758ca
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
Purpose:
Make sure that all fast forward spends of a spend bundle would still have unspent coins.
Current Behavior:
We can accept a spend bundle with fast forward spends that do not currently have latest unspent coins.
New Behavior:
We reject spend bundles like that with
DOUBLE_SPEND
error.