packages feed

haskoin-store 0.6.1 → 0.6.2

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.2+### Changed+- Correct bug where coinbase transactions weren't properly flagged.+ ## 0.6.1 ### Changed - Compatibility with Bitcoin Cash hard fork.
haskoin-store.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 000d7faccd7304a6bb84be2d645f5a137ec8ab18d40df450dbf1cab072c2d93e+-- hash: 3c0c51ffa1a9490e982884fe080410e55fd134fb98e45dc26520628cb4d2496c  name:           haskoin-store-version:        0.6.1+version:        0.6.2 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/Network/Haskoin/Store/Data.hs view
@@ -306,7 +306,7 @@                         , inputSigScript = ss                         , inputWitness = wit                         } =-    [ "coinbase" .= False+    [ "coinbase" .= True     , "txid" .= oph     , "output" .= opi     , "sigscript" .= String (encodeHex ss)