-
Notifications
You must be signed in to change notification settings - Fork 468
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
Tipping tx type #1510
Tipping tx type #1510
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1510 +/- ##
==========================================
- Coverage 52.96% 49.44% -3.53%
==========================================
Files 272 259 -13
Lines 35403 31360 -4043
Branches 555 555
==========================================
- Hits 18752 15505 -3247
+ Misses 14449 13649 -800
- Partials 2202 2206 +4 |
This reverts commit b5379c0.
@@ -406,7 +406,10 @@ func (s *Sequencer) PublishTransaction(parentCtx context.Context, tx *types.Tran | |||
} | |||
} | |||
|
|||
func (s *Sequencer) preTxFilter(_ *params.ChainConfig, header *types.Header, statedb *state.StateDB, _ *arbosState.ArbosState, tx *types.Transaction, sender common.Address) error { | |||
func (s *Sequencer) preTxFilter(_ *params.ChainConfig, header *types.Header, statedb *state.StateDB, arbosState *arbosState.ArbosState, tx *types.Transaction, sender common.Address) error { | |||
if tx.Type() == types.ArbitrumSubtypedTxType && arbosState.ArbOSVersion() < 11 { |
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.
Need to change this to ArbOSVersion 12
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.
I'll address this change in the new version of this PR: #1901
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.
Need to update to activate on ArbOS12
replaced by: #1901 |
This PR:
ArbitrumSubtypedTx
)DynamicFeeTx
and supports collection the priority fee (ArbitrumTippingTx
)needs: OffchainLabs/go-ethereum#204