packages feed

haskoin-node 1.1.1 → 1.1.2

raw patch · 3 files changed

+10/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -4,6 +4,12 @@ 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). +## [1.1.2] - 2024-05-23++### Fixed++- Correct log messages from peer manager.+ ## [1.1.1] - 2024-05-23  ### Fixed
haskoin-node.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6ebc00893fdda0acec1914efa6cf0ba854448b0db92dfd5e464b4d979853592e+-- hash: f9da60a901490032b5ae1b55fffedce7aa9ec901f923378f4994a69b7c2f0eab  name:           haskoin-node-version:        1.1.1+version:        1.1.2 synopsis:       P2P library for Bitcoin and Bitcoin Cash description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-node#readme> category:       Bitcoin, Finance, Network
src/Haskoin/Node/PeerMgr.hs view
@@ -382,7 +382,7 @@ dispatch (PeerDied a e) = do   processPeerOffline a e dispatch (CheckPeer p) = do-  $(logDebugS) "PeerManager" $+  $(logDebugS) "PeerMgr" $     "Housekeeping for peer " <> p.label   checkPeer p @@ -426,7 +426,7 @@           n <- liftIO randomIO           now <- liftIO getCurrentTime           atomically (setPeerPing b n now p)-          $(logDebugS) " PeerManager" $+          $(logDebugS) "PeerMgr" $             "Sending ping "               <> cs (show n)               <> " to: "