diff options
Diffstat (limited to 'src/Network/DHT.hs')
-rw-r--r-- | src/Network/DHT.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Network/DHT.hs b/src/Network/DHT.hs index 0dab29cd..285cf9ff 100644 --- a/src/Network/DHT.hs +++ b/src/Network/DHT.hs | |||
@@ -115,7 +115,7 @@ insertNode param@TableParameters{..} state info witnessed_ip0 = do | |||
115 | myThreadId >>= flip labelThread "DHT.insertNode.pingResults" | 115 | myThreadId >>= flip labelThread "DHT.insertNode.pingResults" |
116 | forM_ ps $ \(CheckPing ns)-> do | 116 | forM_ ps $ \(CheckPing ns)-> do |
117 | forM_ ns $ \n -> do | 117 | forM_ ns $ \n -> do |
118 | (b,mip) <- pingProbe (nodeAddr n) | 118 | (b,mip) <- pingProbe n |
119 | let alive = PingResult n b | 119 | let alive = PingResult n b |
120 | logMessage 'D' $ "PingResult "++show (nodeId n,b) | 120 | logMessage 'D' $ "PingResult "++show (nodeId n,b) |
121 | _ <- join $ atomically $ atomicInsert param state tm alive mip | 121 | _ <- join $ atomically $ atomicInsert param state tm alive mip |