diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-04-12 22:01:51 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-04-12 22:01:51 +0800 |
commit | 33e4f51749cdfcb9125159aae8481a8130e50062 (patch) | |
tree | 3a9415c6320a7a1b81255f7232473abbbcf79307 /eth | |
parent | 8627680e24a29abd5f2aaaeaa2c1c852d8fb693b (diff) | |
parent | aceaaa517834fa8dfc5121b66dfd633f0b10ca8f (diff) | |
download | go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.gz go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.zst go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.zip |
Merge pull request #2444 from karalabe/gethrpctest-chainconfig-panic
cmd/gethrpctest: add missing chain configuration config field
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eth/backend.go b/eth/backend.go index f4282d59f..cab83588c 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -19,6 +19,7 @@ package eth import ( "bytes" + "errors" "fmt" "math/big" "os" @@ -243,6 +244,9 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) { glog.V(logger.Info).Infoln("WARNING: Wrote default ethereum genesis block") } + if config.ChainConfig == nil { + return nil, errors.New("missing chain config") + } eth.chainConfig = config.ChainConfig eth.chainConfig.VmConfig = vm.Config{ EnableJit: config.EnableJit, |