Skip to content

Commit

Permalink
Disable memory trace (ethereum#134)
Browse files Browse the repository at this point in the history
disable memory trace
  • Loading branch information
mask-pp authored Jul 30, 2022
1 parent f9952a3 commit d421337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
vmConfig = vm.Config{
EnablePreimageRecording: config.EnablePreimageRecording,
Debug: true,
Tracer: vm.NewStructLogger(&vm.LogConfig{EnableMemory: true}),
Tracer: vm.NewStructLogger(&vm.LogConfig{EnableMemory: false}),
}
cacheConfig = &core.CacheConfig{
TrieCleanLimit: config.TrieCleanCache,
Expand Down

0 comments on commit d421337

Please sign in to comment.