aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-04-12 22:01:51 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-04-12 22:01:51 +0800
commit33e4f51749cdfcb9125159aae8481a8130e50062 (patch)
tree3a9415c6320a7a1b81255f7232473abbbcf79307 /cmd
parent8627680e24a29abd5f2aaaeaa2c1c852d8fb693b (diff)
parentaceaaa517834fa8dfc5121b66dfd633f0b10ca8f (diff)
downloadgo-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar
go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.gz
go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.bz2
go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.lz
go-tangerine-33e4f51749cdfcb9125159aae8481a8130e50062.tar.xz
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 'cmd')
-rw-r--r--cmd/gethrpctest/main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/gethrpctest/main.go b/cmd/gethrpctest/main.go
index 38016fb35..4843f8658 100644
--- a/cmd/gethrpctest/main.go
+++ b/cmd/gethrpctest/main.go
@@ -26,11 +26,13 @@ import (
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/node"
+ "github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/tests"
"github.com/ethereum/go-ethereum/whisper"
)
@@ -129,6 +131,7 @@ func MakeSystemNode(keydir string, privkey string, test *tests.BlockTest) (*node
ethConf := &eth.Config{
TestGenesisState: db,
TestGenesisBlock: test.Genesis,
+ ChainConfig: &core.ChainConfig{HomesteadBlock: params.MainNetHomesteadBlock},
AccountManager: accman,
}
if err := stack.Register(func(ctx *node.ServiceContext) (node.Service, error) { return eth.New(ctx, ethConf) }); err != nil {