-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add blockdaemon osmosis seed nodes (#1302)
* add blockdaemon osmosis seed nodes * fix seed node domains * run gofmt
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,13 +83,15 @@ func InitCmd(mbm module.BasicManager, defaultNodeHome string) *cobra.Command { | |
// An easy way to run a lightweight seed node is to use tenderseed: github.com/binaryholdings/tenderseed | ||
|
||
seeds := []string{ | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:26656", // [ block pane ] | ||
"6bcdbcfd5d2c6ba58460f10dbcfde58278212833@osmosis.artifact-staking.io:26656", // Artifact Staking | ||
"[email protected]:26656", // Pbcups | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:2000", // Notional | ||
"[email protected]:26656", // [ block pane ] | ||
"6bcdbcfd5d2c6ba58460f10dbcfde58278212833@osmosis.artifact-staking.io:26656", // Artifact Staking | ||
"[email protected]:26656", // Pbcups | ||
"77bb5fb9b6964d6e861e91c1d55cf82b67d838b5@bd-osmosis-seed-mainnet-us-01.bdnodes.net:26656", // Blockdaemon US | ||
"3243426ab56b67f794fa60a79cc7f11bc7aa752d@bd-osmosis-seed-mainnet-eu-02.bdnodes.net:26656", // Blockdaemon EU | ||
} | ||
config.P2P.Seeds = strings.Join(seeds, ",") | ||
config.P2P.MaxNumInboundPeers = 320 | ||
|