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.6.2
+### Changed
+- Correct bug where coinbase transactions weren't properly flagged.
+
 ## 0.6.1
 ### Changed
 - Compatibility with Bitcoin Cash hard fork.
diff --git a/haskoin-store.cabal b/haskoin-store.cabal
--- a/haskoin-store.cabal
+++ b/haskoin-store.cabal
@@ -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
diff --git a/src/Network/Haskoin/Store/Data.hs b/src/Network/Haskoin/Store/Data.hs
--- a/src/Network/Haskoin/Store/Data.hs
+++ b/src/Network/Haskoin/Store/Data.hs
@@ -306,7 +306,7 @@
                         , inputSigScript = ss
                         , inputWitness = wit
                         } =
-    [ "coinbase" .= False
+    [ "coinbase" .= True
     , "txid" .= oph
     , "output" .= opi
     , "sigscript" .= String (encodeHex ss)
