diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.61.0
+### Fixed
+- Fixed recursion bug in Blockchain format conversion function.
+
 ## 0.60.0
 ### Fixed
 - Correct notifications subsystem.
diff --git a/haskoin-store-data.cabal b/haskoin-store-data.cabal
--- a/haskoin-store-data.cabal
+++ b/haskoin-store-data.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 3cf8114d4612ff6e15109aff8e7ae30d2f769416f5a6d68d5c9ae64db72709e2
+-- hash: 3a2414524da4c4abe46f42d85ada2fede20ad9062091b6a4c491b161a3634053
 
 name:           haskoin-store-data
-version:        0.60.0
+version:        0.61.0
 synopsis:       Data for Haskoin Store
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
diff --git a/src/Haskoin/Store/Data.hs b/src/Haskoin/Store/Data.hs
--- a/src/Haskoin/Store/Data.hs
+++ b/src/Haskoin/Store/Data.hs
@@ -3492,7 +3492,7 @@
                   StoreInput{..} -> inputPkScript
     inputAddress =
         case i of StoreCoinbase{} -> Nothing
-                  StoreInput{} -> inputAddress
+                  StoreInput{..} -> inputAddress
     OutPoint out_hash out_index = inputPoint i
     spender =
         BinfoSpender
