From 6e7822e21013168fd185c0676034ad1b5e8a724c Mon Sep 17 00:00:00 2001 From: kdeme Date: Sun, 24 Mar 2019 21:12:26 +0100 Subject: [PATCH] Change default minimum PoW to same value as geth --- eth/p2p/rlpx_protocols/whisper_protocol.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/p2p/rlpx_protocols/whisper_protocol.nim b/eth/p2p/rlpx_protocols/whisper_protocol.nim index 292396f..dd715f8 100644 --- a/eth/p2p/rlpx_protocols/whisper_protocol.nim +++ b/eth/p2p/rlpx_protocols/whisper_protocol.nim @@ -24,7 +24,7 @@ const defaultFilterQueueCapacity = 64 whisperVersion* = 6 whisperVersionStr* = "6.0" - defaultMinPow* = 0.001'f64 + defaultMinPow* = 0.2'f64 defaultMaxMsgSize* = 1024'u32 * 1024'u32 # * 10 # should be no higher than max RLPx size messageInterval* = 300 ## Interval at which messages are send to peers, in ms pruneInterval* = 1000 ## Interval at which message queue is pruned, in ms