go-ethereum/core/vm
gary rong b9df7ecdc3
all: seperate consensus error and evm internal error (#20830)
* all: seperate consensus error and evm internal error

There are actually two types of error will be returned when
a tranaction/message call is executed: (a) consensus error
(b) evm internal error. The former should be converted to
a consensus issue, e.g. The sender doesn't enough asset to
purchase the gas it specifies. The latter is allowed since
evm itself is a blackbox and internal error is allowed to happen.

This PR emphasizes the difference by introducing a executionResult
structure. The evm error is embedded inside. So if any error
returned, it indicates consensus issue happens.

And also this PR improve the `EstimateGas` API to return the concrete
revert reason if the transaction always fails

* all: polish

* accounts/abi/bind/backends: add tests

* accounts/abi/bind/backends, internal: cleanup error message

* all: address comments

* core: fix lint

* accounts, core, eth, internal: address comments

* accounts, internal: resolve revert reason if possible

* accounts, internal: address comments
2020-04-22 11:25:36 +03:00
..
runtime core/vm: use a callcontext struct (#20761) 2020-04-07 12:45:21 +03:00
testdata
analysis_test.go
analysis.go
common.go
contract.go
contracts_test.go core: fix staticcheck warnings (#20384) 2019-11-27 09:50:30 +01:00
contracts.go core: fix staticcheck warnings (#20384) 2019-11-27 09:50:30 +01:00
doc.go
eips.go core/vm: use a callcontext struct (#20761) 2020-04-07 12:45:21 +03:00
errors.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
evm.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
gas_table_test.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
gas_table.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
gas.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
gen_structlog.go
instructions_test.go core/vm: use a callcontext struct (#20761) 2020-04-07 12:45:21 +03:00
instructions.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
int_pool_verifier_empty.go
int_pool_verifier.go
interface.go
interpreter.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
intpool_test.go
intpool.go core/vm: use a callcontext struct (#20761) 2020-04-07 12:45:21 +03:00
jump_table.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
logger_json.go
logger_test.go
logger.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
memory_table.go
memory.go core/evm: avoid copying memory for input in calls (#20177) 2019-11-04 11:31:09 +02:00
opcodes.go all: seperate consensus error and evm internal error (#20830) 2020-04-22 11:25:36 +03:00
stack_table.go
stack.go core: fix staticcheck warnings (#20384) 2019-11-27 09:50:30 +01:00