diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-04-25 23:30:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-25 23:30:56 +0800 |
commit | fff16169c64a83d57d2eed35b6a2e33248c7d5eb (patch) | |
tree | 9dd32e8fb794b4950313ae2b2cd5499bb60dc4cd /cmd/faucet/faucet.go | |
parent | ba3bcd16a6d99bc0e58516556df8e96b730c2d60 (diff) | |
parent | e61035c5a3630e4f6fd0fb3e5346a4eed8cedc80 (diff) | |
download | dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.gz dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.bz2 dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.lz dexon-fff16169c64a83d57d2eed35b6a2e33248c7d5eb.tar.xz 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 'cmd/faucet/faucet.go')
-rw-r--r-- | cmd/faucet/faucet.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/faucet/faucet.go b/cmd/faucet/faucet.go index f87cfdb72..1c5c43edc 100644 --- a/cmd/faucet/faucet.go +++ b/cmd/faucet/faucet.go @@ -61,7 +61,7 @@ var ( apiPortFlag = flag.Int("apiport", 8080, "Listener port for the HTTP API connection") ethPortFlag = flag.Int("ethport", 30303, "Listener port for the devp2p connection") bootFlag = flag.String("bootnodes", "", "Comma separated bootnode enode URLs to seed with") - netFlag = flag.Int("network", 0, "Network ID to use for the Ethereum protocol") + netFlag = flag.Uint64("network", 0, "Network ID to use for the Ethereum protocol") statsFlag = flag.String("ethstats", "", "Ethstats network monitoring auth string") netnameFlag = flag.String("faucet.name", "", "Network name to assign to the faucet") @@ -179,7 +179,7 @@ type faucet struct { lock sync.RWMutex // Lock protecting the faucet's internals } -func newFaucet(genesis *core.Genesis, port int, enodes []*discv5.Node, network int, stats string, ks *keystore.KeyStore, index []byte) (*faucet, error) { +func newFaucet(genesis *core.Genesis, port int, enodes []*discv5.Node, network uint64, stats string, ks *keystore.KeyStore, index []byte) (*faucet, error) { // Assemble the raw devp2p protocol stack stack, err := node.New(&node.Config{ Name: "geth", |