You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge remote-tracking branch 'origin/master' into merge-v1.12.1
Conflicts:
core/txpool/txpool.go
We added max code size to ChainConfig on master (ethereum#255) and this conflicted with
upstream changes to refactoring txpool. Resolved by putting the check in
ValidateTransaction in the file it was moved to.
Copy file name to clipboardExpand all lines: params/config_arbitrum.go
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ type ArbitrumChainParams struct {
29
29
InitialArbOSVersionuint64
30
30
InitialChainOwner common.Address
31
31
GenesisBlockNumuint64
32
+
MaxCodeSizeuint64`json:"MaxCodeSize,omitempty"`// Maximum bytecode to permit for a contract. 0 value implies params.MaxCodeSize
33
+
MaxInitCodeSizeuint64`json:"MaxInitCodeSize,omitempty"`// Maximum initcode to permit in a creation transaction and create instructions. 0 value implies params.MaxInitCodeSize
0 commit comments