diff --git a/state/store.go b/state/store.go index c9d268996..13e25a958 100644 --- a/state/store.go +++ b/state/store.go @@ -149,7 +149,7 @@ func LoadABCIResponses(db dbm.DB, height int64) (*ABCIResponses, error) { // This is useful in case we crash after app.Commit and before s.Save(). // Responses are indexed by height so they can also be loaded later to produce Merkle proofs. func saveABCIResponses(db dbm.DB, height int64, abciResponses *ABCIResponses) { - db.Set(calcABCIResponsesKey(height), abciResponses.Bytes()) + db.SetSync(calcABCIResponsesKey(height), abciResponses.Bytes()) } //-----------------------------------------------------------------------------