packages feed

haskoin-node 0.9.11 → 0.9.12

raw patch · 3 files changed

+9/−5 lines, 3 files

Files

CHANGELOG.md view
@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.9.12+### Changed+- Demote some logging to debug level.+ ## 0.9.11 ### Added - Add `-O2` optimisations to GHC.
haskoin-node.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.31.1.+-- This file has been generated from package.yaml by hpack version 0.31.2. -- -- see: https://github.com/sol/hpack ----- hash: d7f0f3506124cc6b88315a025cb4d903ef1fc664732c0f8a981a67315542c5e3+-- hash: 171d50e9065fd585ba3486949cdb38c484251bcabdf393b94681c8681754e440  name:           haskoin-node-version:        0.9.11+version:        0.9.12 synopsis:       Haskoin Node P2P library for Bitcoin and Bitcoin Cash description:    Bitcoin and Bitcoin Cash peer-to-peer protocol library featuring headers-first synchronisation. category:       Bitcoin, Finance, Network
src/Network/Haskoin/Node/Chain.hs view
@@ -129,7 +129,7 @@             $(logDebugS) "Chain" "Getting next peer to sync from"             nextPeer >>= \case                 Nothing ->-                    $(logInfoS) "Chain" "Finished syncing against all peers"+                    $(logDebugS) "Chain" "Finished syncing against all peers"                 Just p -> syncPeer p         Just _ -> $(logDebugS) "Chain" "Already syncing against a peer" @@ -140,7 +140,7 @@  syncPeer :: MonadChain m => Peer -> m () syncPeer p = do-    $(logInfoS) "Chain" "Syncing hedears against selected peer"+    $(logDebugS) "Chain" "Syncing headers against selected peer"     bb <-         chainSyncingPeer >>= \case             Just ChainSync {chainSyncPeer = p', chainHighest = Just g}