Commit 107cc2e8 authored by Evan Vigil-McClanahan's avatar Evan Vigil-McClanahan
Browse files

reconfigure

- change late block time to 15 minutes, rather than 150 (typo fix)
- increase block sync sizes on validators
- allow more incoming connections on validators
parent c2efe4ed
Showing with 15 additions and 1 deletion
+15 -1
......@@ -18,6 +18,9 @@
{honor_quick_sync, false},
{quick_sync_mode, assumed_valid},
{validation_width, 8},
{block_sync_batch_size, 10},
{block_sync_batch_limit, 100},
{max_inbound_connections, 32},
{key, undefined},
{relay_limit, 100},
{base_dir, "/var/data"}
......
......@@ -14,6 +14,9 @@
[
{ports, [2154]},
{validation_width, 8},
{block_sync_batch_size, 10},
{block_sync_batch_limit, 100},
{max_inbound_connections, 32},
{key, undefined},
{relay_limit, 100},
{base_dir, "/var/data"}
......
......@@ -93,7 +93,7 @@
{batch_size, 2500},
{curve, 'SS512'},
{block_time, 60000},
{late_block_timeout_seconds, 9000},
{late_block_timeout_seconds, 900},
{update_dir, "/opt/miner/update"},
{election_interval, 30},
{radio_device, { {127,0,0,1}, 1680,
......
......@@ -18,6 +18,10 @@
{honor_quick_sync, false},
{quick_sync_mode, assumed_valid},
{key, undefined},
{block_sync_batch_size, 10},
{block_sync_batch_limit, 100},
{validation_width, 8},
{max_inbound_connections, 32},
{relay_limit, 100},
{base_dir, "data"}
]},
......
......@@ -13,6 +13,10 @@
{blockchain,
[
{ports, [2154]},
{block_sync_batch_size, 10},
{block_sync_batch_limit, 100},
{validation_width, 8},
{max_inbound_connections, 32},
{key, undefined},
{relay_limit, 100},
{base_dir, "data"}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment