erigon-pulse/accounts/abi
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
..
bind all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
abi_test.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
abi.go all: seperate consensus error and evm internal error (#20830) 2020-05-20 15:26:22 +03:00
argument.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
doc.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
error.go accounts/abi: improve type handling, add event support (#14743) 2017-10-17 13:07:08 +02:00
event_test.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
event.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
method_test.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
method.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
numbers_test.go accounts: remove deadcode isSigned (#16990) 2018-06-20 11:46:29 +02:00
numbers.go Apply Turbo-Geth modifications to go-ethereum codebase 2019-11-01 21:52:03 +01:00
pack_test.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
pack.go accounts/abi/bind: fix destructive packing of *big.Int (#20412) 2019-12-09 12:17:48 +01:00
reflect_test.go accounts/abi: Add tests for reflection ahead of refactor (#18434) 2019-01-15 16:45:52 +01:00
reflect.go accounts/abi: Prevent recalculation of internal fields (#20895) 2020-05-20 15:26:22 +03:00
type_test.go accounts/abi: add internalType information and fix issues (#20179) 2019-12-03 13:16:25 +01:00
type.go accounts/abi: add internalType information and fix issues (#20179) 2019-12-03 13:16:25 +01:00
unpack_test.go geth 1.9.13 (#469) 2020-04-19 18:31:47 +01:00
unpack.go geth 1.9.13 (#469) 2020-04-19 18:31:47 +01:00