aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-08-06 17:20:15 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-08-07 18:24:32 +0800
commit785b3e7a575f26f3c33e3369d8a75fb131f90584 (patch)
treea74e3cddf0a03f1e6a048175be8177bc59526ed6 /eth
parentac10c9352e053a06a69fad634e9ec6624ee5808d (diff)
downloadgo-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar.gz
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar.bz2
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar.lz
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar.xz
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.tar.zst
go-tangerine-785b3e7a575f26f3c33e3369d8a75fb131f90584.zip
cmd/geth, eth: added canonical extra data
Implemented canonical extra data according to https://github.com/ethereum/wiki/wiki/Extra-Data
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 4795000e0..ed46a4ab3 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -45,7 +45,6 @@ import (
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/nat"
- "github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/whisper"
)
@@ -92,6 +91,7 @@ type Config struct {
NatSpec bool
AutoDAG bool
PowTest bool
+ ExtraData []byte
MaxPeers int
MaxPendingPeers int
@@ -378,12 +378,7 @@ func New(config *Config) (*Ethereum, error) {
eth.miner = miner.New(eth, eth.EventMux(), eth.pow)
eth.miner.SetGasPrice(config.GasPrice)
-
- extra := config.Name
- if uint64(len(extra)) > params.MaximumExtraDataSize.Uint64() {
- extra = extra[:params.MaximumExtraDataSize.Uint64()]
- }
- eth.miner.SetExtra([]byte(extra))
+ eth.miner.SetExtra(config.ExtraData)
if config.Shh {
eth.whisper = whisper.New()