Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/stacks-network/stacks-core
Browse files Browse the repository at this point in the history
… into feat/clippy-ci
  • Loading branch information
jferrant committed Dec 20, 2024
2 parents fb0542e + c94e46c commit 99000c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stackslib/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl ConfigFile {
mode: Some("xenon".to_string()),
rpc_port: Some(18332),
peer_port: Some(18333),
peer_host: Some("bitcoind.testnet.stacks.co".to_string()),
peer_host: Some("0.0.0.0".to_string()),
magic_bytes: Some("T2".into()),
..BurnchainConfigFile::default()
};
Expand Down Expand Up @@ -227,9 +227,9 @@ impl ConfigFile {
mode: Some("mainnet".to_string()),
rpc_port: Some(8332),
peer_port: Some(8333),
peer_host: Some("bitcoin.blockstack.com".to_string()),
username: Some("blockstack".to_string()),
password: Some("blockstacksystem".to_string()),
peer_host: Some("0.0.0.0".to_string()),
username: Some("bitcoin".to_string()),
password: Some("bitcoin".to_string()),
magic_bytes: Some("X2".to_string()),
..BurnchainConfigFile::default()
};
Expand Down

0 comments on commit 99000c0

Please sign in to comment.