Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ require (
)

// Use this command to find the pseudoversion for an op-geth commit `go list -m github.com/celo-org/op-geth@<commit-hash>`
replace github.com/ethereum/go-ethereum => github.com/celo-org/op-geth v1.101411.1-0.20260226170727-ceddbe76099e
replace github.com/ethereum/go-ethereum => github.com/celo-org/op-geth v1.101411.1-0.20260303170601-25709731226d

// replace github.com/ethereum/go-ethereum => ../op-geth

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7
github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/campoy/embedmd v1.0.0 h1:V4kI2qTJJLf4J29RzI/MAt2c3Bl4dQSYPuflzwFH2hY=
github.com/campoy/embedmd v1.0.0/go.mod h1:oxyr9RCiSXg0M3VJ3ks0UGfp98BpSSGr0kpiX3MzVl8=
github.com/celo-org/op-geth v1.101411.1-0.20260226170727-ceddbe76099e h1:0eaGY5/2zKhRMlm/jADSRS/yZsjamYrgfEejWpuYXig=
github.com/celo-org/op-geth v1.101411.1-0.20260226170727-ceddbe76099e/go.mod h1:9J7De8kDwXE/lrMgVEHc0F33TZqcN1Lb5nYaW6UZt38=
github.com/celo-org/op-geth v1.101411.1-0.20260303170601-25709731226d h1:KKeiaLs0eyUL+RJs7AmdBxvM1i0vaY+7WybY6lY5Nts=
github.com/celo-org/op-geth v1.101411.1-0.20260303170601-25709731226d/go.mod h1:9J7De8kDwXE/lrMgVEHc0F33TZqcN1Lb5nYaW6UZt38=
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
github.com/cespare/cp v0.1.0 h1:SE+dxFebS7Iik5LK0tsi1k9ZCxEaFX4AjQmoyA+1dJk=
Expand Down
5 changes: 0 additions & 5 deletions op-node/rollup/superchain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ func requireAllHardforksSetCorrectly(t *testing.T, cfg Config, hardforkCfg super
cfgVal := reflect.ValueOf(&cfg).Elem()
for i := 0; i < hardforkVal.NumField(); i++ {
hardforkField := hardforkType.Field(i)
if hardforkField.Name == "GingerbreadBlock" {
// GingerbreadBlock is a chain config concept (block number, not timestamp),
// not a rollup config field.
continue
}
cfgField := cfgVal.FieldByName(hardforkField.Name)
require.Equalf(t, hardforkVal.Field(i).Elem(), cfgField.Elem(), "missing hard fork field %v", hardforkField.Name)
}
Expand Down
Loading