diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/vm/interpreter.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 516438509..ea5468f90 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -161,8 +161,8 @@ func (in *Interpreter) Run(snapshot int, contract *Contract, input []byte) (ret if in.cfg.Debug { logged = false - pcCopy = uint64(pc) - gasCopy = uint64(contract.Gas) + pcCopy = pc + gasCopy = contract.Gas stackCopy = newstack() for _, val := range stack.data { stackCopy.push(val) |