aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-04-25 23:30:56 +0800
committerGitHub <noreply@github.com>2017-04-25 23:30:56 +0800
commitfff16169c64a83d57d2eed35b6a2e33248c7d5eb (patch)
tree9dd32e8fb794b4950313ae2b2cd5499bb60dc4cd /eth/protocol.go
parentba3bcd16a6d99bc0e58516556df8e96b730c2d60 (diff)
parente61035c5a3630e4f6fd0fb3e5346a4eed8cedc80 (diff)
downloaddexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.gz
dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.zst
dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.zip
Merge pull request #14377 from karalabe/unify-network-ids
cmd, eth, les, mobile: make networkid uint64 everywhere
Diffstat (limited to 'eth/protocol.go')
-rw-r--r--eth/protocol.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol.go b/eth/protocol.go
index 40997da7a..4bc8bee72 100644
--- a/eth/protocol.go
+++ b/eth/protocol.go
@@ -105,7 +105,7 @@ type txPool interface {
// statusData is the network packet for the status message.
type statusData struct {
ProtocolVersion uint32
- NetworkId uint32
+ NetworkId uint64
TD *big.Int
CurrentBlock common.Hash
GenesisBlock common.Hash