Browse Source

Update store.go

Revert to SetSync for saveABCIResponses() as per Ethan's feedback
pull/1805/head
Jae Kwon 6 years ago
committed by GitHub
parent
commit
b41b89732d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      state/store.go

+ 1
- 1
state/store.go View File

@ -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())
}
//-----------------------------------------------------------------------------


Loading…
Cancel
Save