Commit 41810464 authored by zelig's avatar zelig

swarm/network, cmd/swarm: swarm default network id is 3 (to match Ropsten)

parent d7c398b6
...@@ -68,7 +68,7 @@ var ( ...@@ -68,7 +68,7 @@ var (
} }
SwarmNetworkIdFlag = cli.IntFlag{ SwarmNetworkIdFlag = cli.IntFlag{
Name: "bzznetworkid", Name: "bzznetworkid",
Usage: "Network identifier (integer, default 322=swarm testnet)", Usage: "Network identifier (integer, default 3=swarm testnet)",
Value: network.NetworkId, Value: network.NetworkId,
} }
SwarmConfigPathFlag = cli.StringFlag{ SwarmConfigPathFlag = cli.StringFlag{
......
...@@ -51,7 +51,7 @@ const ( ...@@ -51,7 +51,7 @@ const (
Version = 0 Version = 0
ProtocolLength = uint64(8) ProtocolLength = uint64(8)
ProtocolMaxMsgSize = 10 * 1024 * 1024 ProtocolMaxMsgSize = 10 * 1024 * 1024
NetworkId = 322 NetworkId = 3
) )
const ( const (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment