packages feed

haskoin-store 0.11.0 → 0.11.1

raw patch · 3 files changed

+6/−3 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.11.1+### Removed+- Removed latest block time check.+ ## 0.11.0 ### Changed - Improve post transactions endpoint.
haskoin-store.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 11df7d51fa2c0041ce6388778dc0d89a549e23dff01a5a47e75df409f9b29743+-- hash: 139f91772d993146024af96c5aaf5d871181cb34df80da213de5de2bd4ebfe99  name:           haskoin-store-version:        0.11.0+version:        0.11.1 synopsis:       Storage and index for Bitcoin and Bitcoin Cash description:    Store blocks, transactions, and balances for Bitcoin or Bitcoin Cash, and make that information via REST API. category:       Bitcoin, Finance, Network
src/Haskoin/Store.hs view
@@ -240,7 +240,6 @@                 x <- n                 y <- b                 guard $ nodeHeight x - blockDataHeight y <= 1-                guard $ blockTimestamp (blockDataHeader y) >= t - 7200     return         HealthCheck             { healthBlockBest = headerHash . blockDataHeader <$> b