mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 10:50:44 +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 (
|
const (
|
||||||
token byte = 0xfe
|
token byte = 0xfe
|
||||||
emptyShaToken = 0xfd
|
emptyShaToken byte = 0xfd
|
||||||
emptyListShaToken = 0xfe
|
emptyListShaToken byte = 0xfe
|
||||||
tokenToken = 0xff
|
tokenToken byte = 0xff
|
||||||
)
|
)
|
||||||
|
|
||||||
var empty = crypto.Keccak256([]byte(""))
|
var empty = crypto.Keccak256([]byte(""))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue