We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5951b commit 602c42aCopy full SHA for 602c42a
frac/sealed/block_info.go
@@ -6,10 +6,8 @@ import (
6
7
"go.uber.org/zap"
8
9
- "github.com/ozontech/seq-db/config"
10
"github.com/ozontech/seq-db/frac/common"
11
"github.com/ozontech/seq-db/logger"
12
- "github.com/ozontech/seq-db/seq"
13
)
14
15
const seqDBMagic = "SEQM"
@@ -40,11 +38,5 @@ func (b *BlockInfo) Unpack(data []byte) error {
40
38
return errors.New("stats unmarshaling error")
41
39
}
42
b.Info.MetaOnDisk = 0 // todo: make this correction on sealing and remove this next time
43
-
44
- if b.Info.BinaryDataVer >= config.BinaryDataV2 {
45
- b.Info.From = seq.NanosToMID(uint64(b.Info.From))
46
- b.Info.To = seq.NanosToMID(uint64(b.Info.To))
47
- }
48
49
return nil
50
0 commit comments