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.11.1
+### Removed
+- Removed latest block time check.
+
 ## 0.11.0
 ### Changed
 - Improve post transactions endpoint.
diff --git a/haskoin-store.cabal b/haskoin-store.cabal
--- a/haskoin-store.cabal
+++ b/haskoin-store.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 11df7d51fa2c0041ce6388778dc0d89a549e23dff01a5a47e75df409f9b29743
+-- hash: 139f91772d993146024af96c5aaf5d871181cb34df80da213de5de2bd4ebfe99
 
 name:           haskoin-store
-version:        0.11.0
+version:        0.11.1
 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/Haskoin/Store.hs b/src/Haskoin/Store.hs
--- a/src/Haskoin/Store.hs
+++ b/src/Haskoin/Store.hs
@@ -240,7 +240,6 @@
                 x <- n
                 y <- b
                 guard $ nodeHeight x - blockDataHeight y <= 1
-                guard $ blockTimestamp (blockDataHeader y) >= t - 7200
     return
         HealthCheck
             { healthBlockBest = headerHash . blockDataHeader <$> b
