forked from cerc-io/plugeth
* 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 |
||
|---|---|---|
| .. | ||
| runtime | ||
| testdata | ||
| analysis_test.go | ||
| analysis.go | ||
| common.go | ||
| contract.go | ||
| contracts_test.go | ||
| contracts.go | ||
| doc.go | ||
| eips.go | ||
| errors.go | ||
| evm.go | ||
| gas_table_test.go | ||
| gas_table.go | ||
| gas.go | ||
| gen_structlog.go | ||
| instructions_test.go | ||
| instructions.go | ||
| int_pool_verifier_empty.go | ||
| int_pool_verifier.go | ||
| interface.go | ||
| interpreter.go | ||
| intpool_test.go | ||
| intpool.go | ||
| jump_table.go | ||
| logger_json.go | ||
| logger_test.go | ||
| logger.go | ||
| memory_table.go | ||
| memory.go | ||
| opcodes.go | ||
| stack_table.go | ||
| stack.go | ||