Skip to content

Commit

Permalink
chore: update default testnet hiro bootstrap node
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieC3 committed Jan 9, 2024
1 parent 8a075a0 commit 23ef4ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion testnet/stacks-node/conf/testnet-follower-conf.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# working_dir = "/dir/to/save/chainstate"
rpc_bind = "0.0.0.0:20443"
p2p_bind = "0.0.0.0:20444"
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:20444"
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:30444"
wait_time_for_microblocks = 10000

[burnchain]
Expand Down
2 changes: 1 addition & 1 deletion testnet/stacks-node/conf/testnet-miner-conf.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ p2p_bind = "0.0.0.0:20444"
seed = "<YOUR_SEED>"
local_peer_seed = "<YOUR_SEED>"
miner = true
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:20444"
bootstrap_node = "029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:30444"
wait_time_for_microblocks = 10000

[burnchain]
Expand Down
2 changes: 1 addition & 1 deletion testnet/stacks-node/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl ConfigFile {
};

let node = NodeConfigFile {
bootstrap_node: Some("029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:20444".to_string()),
bootstrap_node: Some("029266faff4c8e0ca4f934f34996a96af481df94a89b0c9bd515f3536a95682ddc@seed.testnet.hiro.so:30444".to_string()),
miner: Some(false),
..NodeConfigFile::default()
};
Expand Down

0 comments on commit 23ef4ce

Please sign in to comment.