diff --git a/store/rootmulti/store.go b/store/rootmulti/store.go index 1ee4f03ea2..5365109143 100644 --- a/store/rootmulti/store.go +++ b/store/rootmulti/store.go @@ -715,7 +715,7 @@ func (rs *Store) Restore( if height == 0 { return sdkerrors.Wrap(sdkerrors.ErrLogic, "cannot restore snapshot at height 0") } - if height > uint64(math.MaxUint64) { + if height > uint64(math.MaxInt64) { return sdkerrors.Wrapf(snapshottypes.ErrInvalidMetadata, "snapshot height %v cannot exceed %v", height, int64(math.MaxInt64)) }