diff --git a/consensus/tendermint/abci/app.go b/consensus/tendermint/abci/app.go
index 6a5627aa72bf6554cc118a75ab39ea5f20675c9c..74be6be92ea353f09f4a87bf01b3b4d8ebbcc18b 100644
--- a/consensus/tendermint/abci/app.go
+++ b/consensus/tendermint/abci/app.go
@@ -178,6 +178,8 @@ func (app *abciApp) Commit() abci_types.ResponseCommit {
 			Log:  fmt.Sprintf("Could not commit block: %s", err),
 		}
 	}
+	// Just kill the cache - it is badly implemented
+	app.committer.Reset()
 
 	logging.InfoMsg(app.logger, "Resetting transaction check cache")
 	app.checker.Reset()