haskoin-store 1.3.0 → 1.4.0
raw patch · 2 files changed
+12/−12 lines, 2 filesdep ~haskoin-store-dataPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: haskoin-store-data
API changes (from Hackage documentation)
Files
haskoin-store.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: haskoin-store-version: 1.3.0+version: 1.4.0 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@@ -55,7 +55,7 @@ , hashtables >=1.2.4.2 , haskoin-core >=1.0.0 , haskoin-node >=1.0.0- , haskoin-store-data ==1.3.0+ , haskoin-store-data ==1.4.0 , hedis >=0.12.13 , http-types >=0.12.3 , lens >=4.18.1@@ -109,7 +109,7 @@ , haskoin-core >=1.0.0 , haskoin-node >=1.0.0 , haskoin-store- , haskoin-store-data ==1.3.0+ , haskoin-store-data ==1.4.0 , hedis >=0.12.13 , http-types >=0.12.3 , lens >=4.18.1@@ -168,7 +168,7 @@ , haskoin-core >=1.0.0 , haskoin-node >=1.0.0 , haskoin-store- , haskoin-store-data ==1.3.0+ , haskoin-store-data ==1.4.0 , hedis >=0.12.13 , hspec >=2.7.1 , http-types >=0.12.3
src/Haskoin/Store/Database/Reader.hs view
@@ -151,14 +151,14 @@ columnFamilyConfig :: [(String, Config)] columnFamilyConfig =- [ ("addr-tx", def {prefixLength = Just 22, bloomFilter = True}),- ("addr-out", def {prefixLength = Just 22, bloomFilter = True}),- ("tx", def {prefixLength = Just 33, bloomFilter = True}),- ("spender", def {prefixLength = Just 33, bloomFilter = True}), -- unused- ("unspent", def {prefixLength = Just 37, bloomFilter = True}),- ("block", def {prefixLength = Just 33, bloomFilter = True}),- ("height", def {prefixLength = Nothing, bloomFilter = True}),- ("balance", def {prefixLength = Just 22, bloomFilter = True})+ [ ("addr-tx", def {prefixLength = Just 22}),+ ("addr-out", def {prefixLength = Just 22}),+ ("tx", def {prefixLength = Just 33}),+ ("spender", def {prefixLength = Just 33}), -- unused+ ("unspent", def {prefixLength = Just 37}),+ ("block", def {prefixLength = Just 33}),+ ("height", def {prefixLength = Nothing}),+ ("balance", def {prefixLength = Just 22}) ] addrTxCF :: DB -> ColumnFamily