Skip to content
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

Update to the version of go-ethereum that supports arbos 40 #3050

Merged
merged 19 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arbos/block_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ func ProduceBlockAdvanced(
chainConfig := chainContext.Config()

header := createNewHeader(lastBlockHeader, l1Info, arbState, chainConfig)
signer := types.MakeSigner(chainConfig, header.Number, header.Time)
// Note: blockGasLeft will diverge from the actual gas left during execution in the event of invalid txs,
// but it's only used as block-local representation limiting the amount of work done in a block.
blockGasLeft, _ := arbState.L2PricingState().PerBlockGasLimit()
Expand Down Expand Up @@ -255,6 +254,7 @@ func ProduceBlockAdvanced(
var sender common.Address
var dataGas uint64 = 0
preTxHeaderGasUsed := header.GasUsed
signer := types.VersionedArbitrumSigner(chainConfig, header.Number, header.Time, arbState.ArbOSVersion())
receipt, result, err := (func() (*types.Receipt, *core.ExecutionResult, error) {
// If we've done too much work in this block, discard the tx as early as possible
if blockGasLeft < params.TxGas && isUserTx {
Expand Down
3 changes: 2 additions & 1 deletion execution/gethexec/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,8 @@ func (s *Sequencer) precheckNonces(queueItems []txQueueItem, totalBlockSize int)
return queueItems
}
nextHeaderNumber := arbmath.BigAdd(latestHeader.Number, common.Big1)
signer := types.MakeSigner(bc.Config(), nextHeaderNumber, latestHeader.Time)
arbosVersion := types.DeserializeHeaderExtraInformation(latestHeader).ArbOSFormatVersion
signer := types.VersionedArbitrumSigner(bc.Config(), nextHeaderNumber, latestHeader.Time, arbosVersion)
outputQueueItems := make([]txQueueItem, 0, len(queueItems))
var nextQueueItem *txQueueItem
var queueItemsIdx int
Expand Down
2 changes: 1 addition & 1 deletion execution/gethexec/tx_pre_checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func PreCheckTx(bc *core.BlockChain, chainConfig *params.ChainConfig, header *ty
// and we want to disallow BlobTxType since Arbitrum doesn't support EIP-4844 txs yet.
return types.ErrTxTypeNotSupported
}
sender, err := types.Sender(types.MakeSigner(chainConfig, header.Number, header.Time), tx)
sender, err := types.Sender(types.VersionedArbitrumSigner(chainConfig, header.Number, header.Time, arbos.ArbOSVersion()), tx)
if err != nil {
return err
}
Expand Down
Loading