aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi/backend.go
diff options
context:
space:
mode:
authorPaweł Bylica <chfast@gmail.com>2018-12-06 21:34:49 +0800
committerGuillaume Ballet <gballet@gmail.com>2018-12-06 21:34:49 +0800
commitde39513ced05f120b30b0daa49003982cc6b2426 (patch)
tree536d248284c62a0fb913cec44e68daa67a4be51c /internal/ethapi/backend.go
parent3ac633ba8423851a85cb909a1f1f0f3c0d2c5351 (diff)
downloadgo-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar.gz
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar.bz2
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar.lz
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar.xz
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.tar.zst
go-tangerine-de39513ced05f120b30b0daa49003982cc6b2426.zip
core, internal, eth, miner, les: Take VM config from BlockChain (#17955)
Until this commit, when sending an RPC request that called `NewEVM`, a blank `vm.Config` would be taken so as to set some options, based on the default configuration. If some extra configuration switches were passed to the blockchain, those would be ignored. This PR adds a function to get the config from the blockchain, and this is what is now used for RPC calls. Some subsequent changes need to be made, see https://github.com/ethereum/go-ethereum/pull/17955#pullrequestreview-182237244 for the details of the discussion.
Diffstat (limited to 'internal/ethapi/backend.go')
-rw-r--r--internal/ethapi/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/backend.go b/internal/ethapi/backend.go
index c9ffe230c..e23ee03b1 100644
--- a/internal/ethapi/backend.go
+++ b/internal/ethapi/backend.go
@@ -53,7 +53,7 @@ type Backend interface {
GetBlock(ctx context.Context, blockHash common.Hash) (*types.Block, error)
GetReceipts(ctx context.Context, blockHash common.Hash) (types.Receipts, error)
GetTd(blockHash common.Hash) *big.Int
- GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header, vmCfg vm.Config) (*vm.EVM, func() error, error)
+ GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header) (*vm.EVM, func() error, error)
SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription