From 7a024d012daefc9a594f38602997e04de74c7e5a Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Wed, 27 Jul 2022 11:32:38 +0200 Subject: [PATCH] update comments --- internal/state/store.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/state/store.go b/internal/state/store.go index 1034efa34..c49f06c97 100644 --- a/internal/state/store.go +++ b/internal/state/store.go @@ -452,8 +452,7 @@ func (store dbStore) LoadABCIResponses(height int64) (*tmstate.ABCIResponses, er // height that is given // // This is used for recovering from crashes where we called app.Commit and -// before we called s.Save(). It can also be used to produce Merkle proofs of -// the result of txs. +// before we called s.Save() func (store dbStore) LoadLastABCIResponse(height int64) (*tmstate.ABCIResponses, error) { bz, err := store.db.Get(lastABCIResponseKey) if err != nil {