mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 01:40:44 +00:00
Merge pull request #713 from gzliudan/fix-sa9004
compression/rle: fix staticcheck warning SA9004: only the first constant has an explicit type
This commit is contained in:
commit
dc562d4ab1
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