client: mainnet > liquid

This commit is contained in:
tiero
2024-04-25 20:30:31 +02:00
parent 6608b2cc9a
commit 085fac9372

View File

@@ -331,7 +331,7 @@ func getNetwork() (*common.Network, *network.Network) {
net, ok := state[NETWORK]
if !ok {
return &common.MainNet, &network.Liquid
return &common.Liquid, &network.Liquid
}
return networkFromString(net)
}
@@ -343,7 +343,7 @@ func networkFromString(net string) (*common.Network, *network.Network) {
if net == "regtest" {
return &common.RegTest, &network.Regtest
}
return &common.MainNet, &network.Liquid
return &common.Liquid, &network.Liquid
}
func getAddress() (offchainAddr, onchainAddr, redemptionAddr string, err error) {