Skip to content

Commit

Permalink
ovm: don't log error word (ethereum#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed Dec 4, 2020
1 parent a4e6351 commit 7b1340b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func run(evm *EVM, contract *Contract, input []byte, readOnly bool) ([]byte, err
abi := &(account.ABI)
method, err := abi.MethodById(input)
if err != nil {
log.Debug("Calling Known Contract", "Name", name, "ERROR", err)
log.Debug("Calling Known Contract", "Name", name, "Message", err)
} else {
log.Debug("Calling Known Contract", "Name", name, "Method", method.RawName)
}
Expand Down

0 comments on commit 7b1340b

Please sign in to comment.