packages feed

haskoin-store-data 0.53.3 → 0.53.4

raw patch · 3 files changed

+11/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -4,6 +4,14 @@ 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.53.4+### Added+- Debugging when reverting block.++### Fixed+- Negative (headers - blocks) diff shown incorrectly.+- Infinite loop when removing a block's coinbase transaction.+ ## 0.53.3 ### Added - Blockchain.info endpoint: `q/pubkeyhash/:addr`.
haskoin-store-data.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: b590280773f0c48da6b64bfbb9070b72659ce450b84662ff50352ba4eec31d2e+-- hash: 74b8797f4bf92007c668b6f04a1c39b274177d8b5f1f9aa75ce35d0dea9bc3a2  name:           haskoin-store-data-version:        0.53.3+version:        0.53.4 synopsis:       Data for Haskoin Store description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme> category:       Bitcoin, Finance, Network
src/Haskoin/Store/Data.hs view
@@ -1664,7 +1664,7 @@             , "ok"       .= isOK h             ]       where-        diff = blockHealthHeaders - blockHealthBlocks+        diff = toInteger blockHealthHeaders - toInteger blockHealthBlocks  instance FromJSON BlockHealth where     parseJSON =