Skip to content

Commit

Permalink
fix: apply the btc net config to app.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Dec 6, 2024
1 parent 2a700cf commit 76116a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/e2e/initialization/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import (
"github.com/babylonlabs-io/babylon/crypto/bls12381"
"github.com/babylonlabs-io/babylon/privval"
"github.com/babylonlabs-io/babylon/test/e2e/util"
bbn "github.com/babylonlabs-io/babylon/types"
)

type internalNode struct {
Expand Down Expand Up @@ -131,7 +130,7 @@ func (n *internalNode) createAppConfig(nodeConfig *NodeConfig) {
appConfig.MinGasPrices = fmt.Sprintf("%s%s", MinGasPrice, BabylonDenom)
appConfig.StateSync.SnapshotInterval = nodeConfig.SnapshotInterval
appConfig.StateSync.SnapshotKeepRecent = nodeConfig.SnapshotKeepRecent
appConfig.BtcConfig.Network = string(bbn.BtcSimnet)
appConfig.BtcConfig.Network = nodeConfig.BtcNetwork
appConfig.GRPC.Enable = true
appConfig.GRPC.Address = "0.0.0.0:9090"

Expand Down

0 comments on commit 76116a5

Please sign in to comment.