packages feed

haskoin-store 0.52.1 → 0.52.2

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

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.52.2+### Fixed+- Blockchain.info raw address limit should use `limit` parametre and not `n`.+ ## 0.52.1 ### Changed - Stream multiple transactions when requested.
haskoin-store.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 05d6d6bcf4ce4c12ea4fc9dc75e2fe9eb78bb20069ac60c2b8d3486ec4c9bc3f+-- hash: a5257439100cbe46b2ce30ebb4262ac135f8c98cdf4e4536ffbc55b676109f1a  name:           haskoin-store-version:        0.52.1+version:        0.52.2 synopsis:       Storage and index for Bitcoin and Bitcoin Cash description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme> category:       Bitcoin, Finance, Network
src/Haskoin/Store/Web.hs view
@@ -1666,7 +1666,7 @@     get_count = do         d <- lift (asks (maxLimitDefault . webMaxLimits . webConfig))         x <- lift (asks (maxLimitFull . webMaxLimits . webConfig))-        i <- min x <$> (S.param "n" `S.rescue` const (return d))+        i <- min x <$> (S.param "limit" `S.rescue` const (return d))         return $ fromIntegral i     get_offset = do         x <- lift (asks (maxLimitOffset . webMaxLimits . webConfig))