Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nimross committed May 26, 2023
1 parent 5170029 commit 48f68d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/blackfuryd/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func initTestnetFiles(
args initArgs,
) error {
if args.chainID == "" {
args.chainID = fmt.Sprintf("blackfury_%d-1", tmrand.Intn(1000000))
args.chainID = fmt.Sprintf("highbury_%d-1", tmrand.Intn(1000000))
}

nodeIDs := make([]string, args.numValidators)
Expand Down
2 changes: 1 addition & 1 deletion testutil/network/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func DefaultConfig() Config {
AppConstructor: NewAppConstructor(encCfg),
GenesisState: app.ModuleBasics.DefaultGenesis(encCfg.Marshaler),
TimeoutCommit: 2 * time.Second,
ChainID: fmt.Sprintf("blackfury_%d-1", tmrand.Intn(1000000)),
ChainID: fmt.Sprintf("highbury_%d-1", tmrand.Intn(1000000)),
NumValidators: 4,
BondDenom: blackfury.BaseDenom,
MinGasPrices: fmt.Sprintf("0.000006%s", blackfury.BaseDenom),
Expand Down

0 comments on commit 48f68d5

Please sign in to comment.