Skip to content

Commit

Permalink
add storage
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-bousfield committed Jun 27, 2022
1 parent 445fd85 commit 2cabbbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eth/tracers/logger/logger_arbitrum.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ func (*JSONLogger) CaptureArbitrumTransfer(env *vm.EVM, from, to *common.Address
}
func (*StructLogger) CaptureArbitrumTransfer(env *vm.EVM, from, to *common.Address, value *big.Int, before bool, purpose string) {
}
func (*mdLogger) CaptureArbitrumTransfer(env *vm.EVM, from, to *common.Address, amount *big.Int, before bool) {
func (*mdLogger) CaptureArbitrumTransfer(env *vm.EVM, from, to *common.Address, amount *big.Int, before bool, purpose string) {
}

func (*AccessListTracer) CaptureArbitrumStorageGet(key common.Hash, depth int, before bool) {}
func (*JSONLogger) CaptureArbitrumStorageGet(key common.Hash, depth int, before bool) {}
func (*StructLogger) CaptureArbitrumStorageGet(key common.Hash, depth int, before bool) {}
func (*mdLogger) CaptureArbitrumStorageGet(key common.Hash, depth int, before bool) {}

func (*AccessListTracer) CaptureArbitrumStorageSet(key, value common.Hash, depth int, before bool) {}
func (*JSONLogger) CaptureArbitrumStorageSet(key, value common.Hash, depth int, before bool) {}
func (*StructLogger) CaptureArbitrumStorageSet(key, value common.Hash, depth int, before bool) {}
func (*mdLogger) CaptureArbitrumStorageSet(key, value common.Hash, depth int, before bool) {}

0 comments on commit 2cabbbd

Please sign in to comment.