packages feed

bitcoin-types 0.9.1 → 0.9.2

raw patch · 2 files changed

+4/−6 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

bitcoin-types.cabal view
@@ -1,6 +1,6 @@ name: bitcoin-types
 category: Network, Finance
-version: 0.9.1
+version: 0.9.2
 license: MIT
 license-file: LICENSE
 copyright: (c) 2015 Leon Mergen
src/Data/Bitcoin/Types.hs view
@@ -23,9 +23,9 @@                        , putWord64le )
 
 import           Data.Fixed
-import qualified Data.HexString    as HS
-import qualified Data.Base58String as B58S
-import qualified Data.Text         as T
+import qualified Data.HexString            as HS
+import qualified Data.Base58String.Bitcoin as B58S
+import qualified Data.Text                 as T
 
 -- | Per Bitcoin documentation, an identifier used to uniquely identify a
 --   particular transaction; specifically, the sha256d hash of the transaction.
@@ -54,8 +54,6 @@ 
 -- | A single Bitcoin, which represents 10^8 Satoshis.
 type Btc = Fixed Satoshi
-
-
 
 -- | Data type representing a variable length integer. The 'VarInt' type
 --   usually precedes an array or a string that can vary in length.