File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
op-challenger/game/fault/trace/asterisc Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 99 "github.com/ethereum/go-ethereum/crypto"
1010)
1111
12+ // Duplicated fromhttps://github.com/ethereum-optimism/asterisc/blob/4c4705809b4adbb854d265f76ace719b08c732e6/rvgo/fast/memory.go
13+
1214type Memory struct {
1315 // generalized index -> merkle root or nil if invalidated
1416 nodes map [uint64 ]* [32 ]byte
Original file line number Diff line number Diff line change 77 "github.com/ethereum/go-ethereum/crypto"
88)
99
10+ // Duplicated from https://github.com/ethereum-optimism/asterisc/blob/4c4705809b4adbb854d265f76ace719b08c732e6/rvgo/fast/page.go
11+
1012const (
1113 PageAddrSize = 12
1214 PageKeySize = 64 - PageAddrSize
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import (
1212 "github.com/ethereum/go-ethereum/crypto"
1313)
1414
15+ // Duplicated from https://github.com/ethereum-optimism/asterisc/blob/4c4705809b4adbb854d265f76ace719b08c732e6/rvgo/fast/state.go
1516type VMState struct {
1617 Memory * Memory `json:"memory"`
1718
Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ import (
2020 "github.com/stretchr/testify/require"
2121)
2222
23- // TODO(pcw109550): prestate_test.go also uses it. is it okay?
24- //
2523//go:embed test_data
2624var testData embed.FS
2725
You can’t perform that action at this time.
0 commit comments