-
Notifications
You must be signed in to change notification settings - Fork 699
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
Allow decision txs in proposal blocks #2442
Conversation
@@ -29,7 +29,7 @@ import ( | |||
"github.com/ava-labs/avalanchego/vms/platformvm/txs/mempool" | |||
) | |||
|
|||
func TestVerifierVisitProposalBlock(t *testing.T) { | |||
func TestApricotVerifierVisitProposalBlock(t *testing.T) { |
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.
As usual this tests are not well maintained.
Introducing the following convention:
The first word after test is the fork that the test targets. We use LatestFork it the test is meant to be carried out across forks, so to remember to update the test.
onAcceptState: onProposalBlockState, | ||
statelessBlock: b, | ||
timestamp: onProposalBlockState.GetTimestamp(), | ||
} | ||
if err := v.processStandardTxs(b.Transactions, proposalBlkState); err != nil { |
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.
the import/export UTXOs are not correctly handled upon accept here
Superseded by #2451 |
Why this should be merged
Allow inclusion of standard txs in proposal block once Durango is activated
How this works
How this was tested
CI + mainnet sync