Skip to content

Commit 9e8d380

Browse files
committed
Update SetDebug to set both config values (solution 2)
1 parent bb7c8f5 commit 9e8d380

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

core/vm/evm.go

+3
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,10 @@ func (evm *EVM) GetDebug() bool {
193193
}
194194

195195
func (evm *EVM) SetDebug(value bool) {
196+
// Set both of these in sync since they refer to the same config data
197+
// and are interchangeably used in the interpreter & evm.
196198
evm.Config.Debug = value
199+
evm.interpreter.cfg.Debug = value
197200
}
198201

199202
// Call executes the contract associated with the addr with the given input as

core/vm/interpreter.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (
163163
}()
164164
contract.Input = input
165165

166-
if in.evm.GetDebug() {
166+
if in.cfg.Debug {
167167
defer func() {
168168
if err != nil {
169169
if !logged {
@@ -184,7 +184,7 @@ func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (
184184
if steps%1000 == 0 && atomic.LoadInt32(&in.evm.abort) != 0 {
185185
break
186186
}
187-
if in.evm.GetDebug() {
187+
if in.cfg.Debug {
188188
// Capture pre-execution values for tracing.
189189
logged, pcCopy, gasCopy = false, pc, contract.Gas
190190
}
@@ -253,7 +253,7 @@ func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (
253253
mem.Resize(memorySize)
254254
}
255255

256-
if in.evm.GetDebug() {
256+
if in.cfg.Debug {
257257
in.cfg.Tracer.CaptureState(in.evm, pc, op, gasCopy, cost, callContext, in.returnData, in.evm.depth, err)
258258
logged = true
259259
}

0 commit comments

Comments
 (0)