b0566e09c8
This change moves the chain and network parameter definitions, along with the default client and server ports, to a package for reuse by other utilities (most notably, tools in the cmd dir). Along with it, functions commonly used for config parsing and validation are moved to an internal package since they will also be useful for distributed tools.
51 lines
1.7 KiB
Go
51 lines
1.7 KiB
Go
/*
|
|
* Copyright (c) 2013-2015 The btcsuite developers
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
package netparams
|
|
|
|
import "github.com/btcsuite/btcd/chaincfg"
|
|
|
|
// Params is used to group parameters for various networks such as the main
|
|
// network and test networks.
|
|
type Params struct {
|
|
*chaincfg.Params
|
|
RPCClientPort string
|
|
RPCServerPort string
|
|
}
|
|
|
|
// MainNetParams contains parameters specific running btcwallet and
|
|
// btcd on the main network (wire.MainNet).
|
|
var MainNetParams = Params{
|
|
Params: &chaincfg.MainNetParams,
|
|
RPCClientPort: "8334",
|
|
RPCServerPort: "8332",
|
|
}
|
|
|
|
// TestNet3Params contains parameters specific running btcwallet and
|
|
// btcd on the test network (version 3) (wire.TestNet3).
|
|
var TestNet3Params = Params{
|
|
Params: &chaincfg.TestNet3Params,
|
|
RPCClientPort: "18334",
|
|
RPCServerPort: "18332",
|
|
}
|
|
|
|
// SimNetParams contains parameters specific to the simulation test network
|
|
// (wire.SimNet).
|
|
var SimNetParams = Params{
|
|
Params: &chaincfg.SimNetParams,
|
|
RPCClientPort: "18556",
|
|
RPCServerPort: "18554",
|
|
}
|