mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-24 07:34:31 +00:00
compression/rle: fix staticcheck warning SA9004: constant has no explicit type
This commit is contained in:
parent
8f79376ef7
commit
29c9c5808a
1 changed files with 3 additions and 3 deletions
|
|
@ -26,9 +26,9 @@ import (
|
|||
|
||||
const (
|
||||
token byte = 0xfe
|
||||
emptyShaToken = 0xfd
|
||||
emptyListShaToken = 0xfe
|
||||
tokenToken = 0xff
|
||||
emptyShaToken byte = 0xfd
|
||||
emptyListShaToken byte = 0xfe
|
||||
tokenToken byte = 0xff
|
||||
)
|
||||
|
||||
var empty = crypto.Keccak256([]byte(""))
|
||||
|
|
|
|||
Loading…
Reference in a new issue