Skip to content

Commit 1a68206

Browse files
committed
Fix watermarks
1 parent 0dd1794 commit 1a68206

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

codec/op.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import (
1616
)
1717

1818
const (
19-
EmmyBlockWatermark byte = 1 // deprecated
20-
EmmyEndorsementWatermark byte = 2 // deprecated
21-
OperationWatermark byte = 3
22-
TenderbakeBlockWatermark byte = 11
23-
TenderbakePreendorsementWatermark byte = 12
24-
TenderbakeEndorsementWatermark byte = 13
19+
EmmyBlockWatermark byte = 0x01 // deprecated
20+
EmmyEndorsementWatermark byte = 0x02 // deprecated
21+
OperationWatermark byte = 0x03
22+
TenderbakeBlockWatermark byte = 0x11
23+
TenderbakePreendorsementWatermark byte = 0x12
24+
TenderbakeEndorsementWatermark byte = 0x13
2525
)
2626

2727
var (

0 commit comments

Comments
 (0)