From 24ae4dcc4fc06c5edb15604b68e9661c53e74b90 Mon Sep 17 00:00:00 2001 From: keithsue Date: Wed, 8 Jan 2025 13:07:12 +0800 Subject: [PATCH] set btc config to mainnet --- app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.go b/app/config.go index d82161ab..9c3fa258 100644 --- a/app/config.go +++ b/app/config.go @@ -19,6 +19,6 @@ func init() { config.SetBech32PrefixForAccount(AccountAddressPrefix, accountPubKeyPrefix) config.SetBech32PrefixForValidator(validatorAddressPrefix, validatorPubKeyPrefix) config.SetBech32PrefixForConsensusNode(consNodeAddressPrefix, consNodePubKeyPrefix) - config.SetBtcChainCfg(&chaincfg.TestNet3Params) + config.SetBtcChainCfg(&chaincfg.MainNetParams) config.Seal() }