Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn committed Sep 12, 2023
1 parent 98dd9d9 commit d81154d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions store/rootmulti/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ package rootmulti

import (
"fmt"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
"io"
"math"
"sort"
"strconv"
"strings"
"sync"

tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/cosmos/cosmos-sdk/pruning"
pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types"
iavltree "github.com/cosmos/iavl"
Expand Down Expand Up @@ -998,7 +999,7 @@ func (rs *Store) GetCommitInfoFromDb(ver int64) (*types.CommitInfo, error) {
if err != nil {
return nil, errors.Wrap(err, "failed to get commit info")
} else if bz == nil {
return nil, errors.New("no commit info found")
return nil, errors.New("no fcommit info found")
}

cInfo := &types.CommitInfo{}
Expand Down

0 comments on commit d81154d

Please sign in to comment.