We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd1794 commit 1a68206Copy full SHA for 1a68206
codec/op.go
@@ -16,12 +16,12 @@ import (
16
)
17
18
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
+ EmmyBlockWatermark byte = 0x01 // deprecated
+ EmmyEndorsementWatermark byte = 0x02 // deprecated
+ OperationWatermark byte = 0x03
+ TenderbakeBlockWatermark byte = 0x11
+ TenderbakePreendorsementWatermark byte = 0x12
+ TenderbakeEndorsementWatermark byte = 0x13
25
26
27
var (
0 commit comments