erigon-pulse/core/vm
gary rong ad9e4241b1 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
# Conflicts:
#	accounts/abi/abi.go
#	accounts/abi/bind/backends/simulated.go
#	cmd/geth/retesteth.go
#	core/state/snapshot/difflayer_test.go
#	core/state/snapshot/disklayer_test.go
#	core/state/snapshot/iterator_test.go
#	core/state_processor.go
#	core/state_transition.go
#	core/vm/evm.go
#	core/vm/instructions.go
#	core/vm/jump_table.go
#	eth/api_tracer.go
#	internal/ethapi/api.go
#	les/odr_test.go
#	light/odr_test.go
#	tests/state_test_util.go
2020-05-20 15:26:22 +03:00
..
runtime geth 1.9.13 (#469) 2020-04-19 18:31:47 +01:00
testdata core/vm: instruction tests (#16327) 2019-04-04 11:19:38 +02:00
analysis_test.go Apply Turbo-Geth modifications to go-ethereum codebase 2019-11-01 21:52:03 +01:00
analysis.go core/vm: faster create/create2 (#17806) 2018-10-04 18:15:37 +03:00
common.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
contract.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
contracts_test.go core: fix staticcheck warnings (#20384) 2019-12-09 10:47:08 +01:00
contracts.go core: fix staticcheck warnings (#20384) 2019-12-09 10:47:08 +01:00
doc.go core/vm: remove JIT VM codes (#16362) 2018-03-26 13:48:04 +03:00
eips.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
errors.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
evm.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
evmc.go Support EVMC (EVMone) (#509) 2020-05-04 17:13:51 +01:00
gas_table_test.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
gas_table.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
gas.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
gen_structlog.go Apply Turbo-Geth modifications to go-ethereum codebase 2019-11-01 21:52:03 +01:00
instructions_test.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
instructions.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
interface.go Remove EIP2027 (#512) 2020-05-06 09:59:50 +01:00
interpreter.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
jump_table.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
logger_json.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
logger_test.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
logger.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
memory_table.go core/vm: 64 bit memory and gas calculations (#19210) 2019-03-12 11:40:05 +02:00
memory.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00
opcodes.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
stack_table.go Apply Turbo-Geth modifications to go-ethereum codebase 2019-11-01 21:52:03 +01:00
stack.go Use uint256 in EVM implementation (kudos to Pawel Bylica) (#551) 2020-05-18 08:10:59 +01:00