diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-24 19:29:47 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-24 19:29:47 +0800 |
commit | 0a5ee08e2b8927016f9f8d2afe0ac30e9ac0e81f (patch) | |
tree | b355c8a2c33c1b9db339f2fd0faa856beccb1752 /eth | |
parent | 1e62cd6c79afdc4b39a30932f950673405f0c702 (diff) | |
download | go-tangerine-0a5ee08e2b8927016f9f8d2afe0ac30e9ac0e81f.tar.gz go-tangerine-0a5ee08e2b8927016f9f8d2afe0ac30e9ac0e81f.tar.zst go-tangerine-0a5ee08e2b8927016f9f8d2afe0ac30e9ac0e81f.zip |
Godeps, eth, tests: update ethash, used shared for testing
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/eth/backend.go b/eth/backend.go index 2f0bc3ee5..f62ee976d 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -74,6 +74,7 @@ type Config struct { DocRoot string AutoDAG bool PowTest bool + PowShared bool ExtraData []byte AccountManager *accounts.Manager @@ -211,14 +212,18 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) { GpobaseCorrectionFactor: config.GpobaseCorrectionFactor, httpclient: httpclient.New(config.DocRoot), } - - if config.PowTest { + switch { + case config.PowTest: glog.V(logger.Info).Infof("ethash used in test mode") eth.pow, err = ethash.NewForTesting() if err != nil { return nil, err } - } else { + case config.PowShared: + glog.V(logger.Info).Infof("ethash used in shared mode") + eth.pow = ethash.NewShared() + + default: eth.pow = ethash.New() } //genesis := core.GenesisBlock(uint64(config.GenesisNonce), stateDb) |