core: fix lint

This commit is contained in:
rjl493456442 2020-03-30 12:32:08 +08:00
parent 662dab7bf5
commit 19882fd462

View file

@ -72,7 +72,7 @@ type Message interface {
// message no matter the execution itself is successful or not.
type ExecutionResult struct {
UsedGas uint64 // Total used gas but include the refunded gas
Err error // Any error encountered during the exection(listed in core/vm/errors.go)
Err error // Any error encountered during the execution(listed in core/vm/errors.go)
ReturnData []byte // Returned data from evm(function result or data supplied with revert opcode)
}