mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +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 (
|
||||
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