bump process_exit_at_height to 8 days; update master node default

This commit is contained in:
Jude Nelson
2020-07-19 12:07:09 -04:00
parent 33b0f5f054
commit 2e555fe494
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
[node]
rpc_bind = "0.0.0.0:20443"
p2p_bind = "0.0.0.0:20444"
bootstrap_node = "048dd4f26101715853533dee005f0915375854fd5be73405f679c1917a5d4d16aaaf3c4c0d7a9c132a36b8c5fe1287f07dad8c910174d789eb24bdfb5ae26f5f27@argon.blockstack.org:20444"
bootstrap_node = "048dd4f26101715853533dee005f0915375854fd5be73405f679c1917a5d4d16aaaf3c4c0d7a9c132a36b8c5fe1287f07dad8c910174d789eb24bdfb5ae26f5f27@argon-master.blockstack.xyz:20444"
[burnchain]
chain = "bitcoin"
@@ -9,7 +9,7 @@ mode = "argon"
peer_host = "argon.blockstack.org"
rpc_port = 18443
peer_port = 18444
process_exit_at_block_height = 20460
process_exit_at_block_height = 28160
[[mstx_balance]]
address = "STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6"

View File

@@ -91,7 +91,7 @@ impl ConfigFile {
rpc_port: Some(18443),
peer_port: Some(18444),
peer_host: Some("argon.blockstack.org".to_string()),
process_exit_at_block_height: Some(20160 + 300), // 1 block every 30s, 24 hours * 7 + 300 blocks initially mined for seeding faucet / miner
process_exit_at_block_height: Some(28160), // 1 block every 30s, 24 hours * 8 + 300 blocks initially mined for seeding faucet / miner
..BurnchainConfigFile::default()
};