packages feed

haskoin-store 0.6.8 → 0.6.9

raw patch · 3 files changed

+7/−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.6.9+### Changed+- Reduce number of coinbase checks to 10,000 ancestors.+ ## 0.6.8 ### Changed - Further optimize coinbase after height checks.
app/Main.hs view
@@ -289,7 +289,7 @@             res <-                 withSnapshot db $ \s -> do                 let d = (db, defaultReadOptions {useSnapshot = Just s})-                cbAfterHeight d 100000 height txid+                cbAfterHeight d 10000 height txid             S.json $ object ["result" .= res]         S.get "/transactions" $ do             txids <- param "txids"
haskoin-store.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: ccd67ad2ad06941bbac623fbc3d7133ab14bc89b0ea120648557071e3501d0d4+-- hash: 3b2c66acf9e4bbe87c2b291dc99c916edc43bac8bd65fe11da48a82bc56b727e  name:           haskoin-store-version:        0.6.8+version:        0.6.9 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