mirror of
https://github.com/LBRYFoundation/lbcwallet.git
synced 2025-08-30 17:01:30 +00:00
Default to testnet.
Use on mainnet is not recommended until extensive testing has been done, and should be done at your own risk. Run btcwallet with --mainnet to operate on main Bitcoin network.
This commit is contained in:
parent
3c4ff4b0f4
commit
ea9ce4e0b1
3 changed files with 7 additions and 7 deletions
|
@ -614,10 +614,10 @@ func CreateEncryptedWallet(reply chan []byte, msg *btcjson.Message) {
|
||||||
wallets.RUnlock()
|
wallets.RUnlock()
|
||||||
|
|
||||||
var net btcwire.BitcoinNet
|
var net btcwire.BitcoinNet
|
||||||
if cfg.TestNet3 {
|
if cfg.MainNet {
|
||||||
net = btcwire.TestNet3
|
|
||||||
} else {
|
|
||||||
net = btcwire.MainNet
|
net = btcwire.MainNet
|
||||||
|
} else {
|
||||||
|
net = btcwire.TestNet3
|
||||||
}
|
}
|
||||||
w, err := wallet.NewWallet(wname, desc, []byte(pass), net)
|
w, err := wallet.NewWallet(wname, desc, []byte(pass), net)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -45,7 +45,7 @@ type config struct {
|
||||||
DataDir string `short:"D" long:"datadir" description:"Directory to store wallets and transactions"`
|
DataDir string `short:"D" long:"datadir" description:"Directory to store wallets and transactions"`
|
||||||
Username string `short:"u" long:"username" description:"Username for btcd authorization"`
|
Username string `short:"u" long:"username" description:"Username for btcd authorization"`
|
||||||
Password string `short:"P" long:"password" description:"Password for btcd authorization"`
|
Password string `short:"P" long:"password" description:"Password for btcd authorization"`
|
||||||
TestNet3 bool `long:"testnet" description:"Use the test network"`
|
MainNet bool `long:"mainnet" description:"Use the main Bitcoin network (default testnet3)"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// btcwalletHomeDir returns an OS appropriate home directory for btcwallet.
|
// btcwalletHomeDir returns an OS appropriate home directory for btcwallet.
|
||||||
|
|
|
@ -485,10 +485,10 @@ func BtcdHandshake(ws *websocket.Conn) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var walletNetwork btcwire.BitcoinNet
|
var walletNetwork btcwire.BitcoinNet
|
||||||
if cfg.TestNet3 {
|
if cfg.MainNet {
|
||||||
walletNetwork = btcwire.TestNet3
|
|
||||||
} else {
|
|
||||||
walletNetwork = btcwire.MainNet
|
walletNetwork = btcwire.MainNet
|
||||||
|
} else {
|
||||||
|
walletNetwork = btcwire.TestNet3
|
||||||
}
|
}
|
||||||
|
|
||||||
correctNetwork <- btcwire.BitcoinNet(fnet) == walletNetwork
|
correctNetwork <- btcwire.BitcoinNet(fnet) == walletNetwork
|
||||||
|
|
Loading…
Add table
Reference in a new issue