Skip to content

Commit

Permalink
reduce recover attempts to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
techcoderx committed Jul 26, 2022
1 parent 45ad5f2 commit a1d6fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/p2p.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const discovery_interval = 60000
const keep_alive_interval = 2500
const max_blocks_buffer = 100
const max_peers = process.env.MAX_PEERS || 15
const max_recover_attempts = 100
const max_recover_attempts = 25
const history_interval = 10000
const keep_history_for = 20000
const p2p_port = process.env.P2P_PORT || default_port
Expand Down

0 comments on commit a1d6fb7

Please sign in to comment.