-
Notifications
You must be signed in to change notification settings - Fork 170
/
btc_config.go
85 lines (68 loc) · 2.13 KB
/
btc_config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package types
import (
"math/big"
"github.com/btcsuite/btcd/chaincfg"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/spf13/cast"
)
type SupportedBtcNetwork string
type BtcConfig struct {
powLimit *big.Int
retargetAdjustmentFactor int64
reduceMinDifficulty bool
}
const (
BtcMainnet SupportedBtcNetwork = "mainnet"
BtcTestnet SupportedBtcNetwork = "testnet"
BtcSimnet SupportedBtcNetwork = "simnet"
BtcRegtest SupportedBtcNetwork = "regtest"
)
func getParams(opts servertypes.AppOptions) chaincfg.Params {
valueInterface := opts.Get("btc-config.network")
if valueInterface == nil {
panic("Bitcoin network should be provided in options")
}
network, err := cast.ToStringE(valueInterface)
if err != nil {
panic("Bitcoin netowrk config should be valid string")
}
if network == string(BtcMainnet) {
return chaincfg.MainNetParams
} else if network == string(BtcTestnet) {
return chaincfg.TestNet3Params
} else if network == string(BtcSimnet) {
return chaincfg.SimNetParams
} else if network == string(BtcRegtest) {
return chaincfg.RegressionNetParams
} else {
panic("Bitcoin network should be one of [mainet, testnet, simnet, regtest]")
}
}
func parsePowLimit(opts servertypes.AppOptions) *big.Int {
return getParams(opts).PowLimit
}
func parseRetargetAdjustmentFactor(opts servertypes.AppOptions) int64 {
return getParams(opts).RetargetAdjustmentFactor
}
func parseReduceMinDifficulty(opts servertypes.AppOptions) bool {
return getParams(opts).ReduceMinDifficulty
}
func ParseBtcOptionsFromConfig(opts servertypes.AppOptions) BtcConfig {
powLimit := parsePowLimit(opts)
retargetAdjustmentFactor := parseRetargetAdjustmentFactor(opts)
reduceMinDifficulty := parseReduceMinDifficulty(opts)
return BtcConfig{
powLimit: powLimit,
retargetAdjustmentFactor: retargetAdjustmentFactor,
reduceMinDifficulty: reduceMinDifficulty,
}
}
func (c *BtcConfig) PowLimit() big.Int {
return *c.powLimit
}
func (c *BtcConfig) RetargetAdjustmentFactor() int64 {
return c.retargetAdjustmentFactor
}
func (c *BtcConfig) ReduceMinDifficulty() bool {
return c.reduceMinDifficulty
}