packages feed

haskoin-store-data 0.65.5 → 0.65.11

raw patch · 3 files changed

+32/−12 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -4,6 +4,34 @@ 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.65.11+### Fixed+- Backport fixes from version 1.5.0.++## 0.65.10+### Changed+- Revert to older LTS Haskell to attempt to resolve memory leak.++### Removed+- Remove unnecessary lock release.++## 0.65.9+### Changed+- Be more aggressive caching individual transactions.+- Introduce a periodic cache mempool sync task.++## 0.65.8+### Changed+- Perform health check in separate thread.++## 0.65.7+### Changed+- Do not sync mempool to Redis if node is not up-to-date.++## 0.65.6+### Changed+- Improve caching ingestion performance.+ ## 0.65.5 ### Added - Fee field added to Blockchain.info-style export-history endpoint.
haskoin-store-data.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.4.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack ----- hash: 4d0d11cec087e9b2fb4e83ec304affb161540dcb95249d85f6580b161d85abf7+-- hash: 19c4af0dd8e49ef78c83229c78e4762a8bbc2246023fc8d1e61306b5d1a87fa7  name:           haskoin-store-data-version:        0.65.5+version:        0.65.11 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
@@ -553,15 +553,7 @@     unspentScript :: !ByteString,     unspentAddress :: !(Maybe Address)   }-  deriving (Show, Eq, Generic, Hashable, NFData)---- | Follow same order as in database and cache by inverting outpoint sort--- order.-instance Ord Unspent where-  compare a b =-    compare-      (unspentBlock a, unspentPoint b)-      (unspentBlock b, unspentPoint a)+  deriving (Show, Eq, Ord, Generic, Hashable, NFData)  instance Serial Unspent where   serialize Unspent {..} = do