mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
swarm/network: Move hashSize to end of const block
This commit is contained in:
parent
1c7805bde4
commit
3956470fce
1 changed files with 1 additions and 2 deletions
|
|
@ -32,14 +32,13 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
HashSize = 32
|
|
||||||
|
|
||||||
Low uint8 = iota
|
Low uint8 = iota
|
||||||
Mid
|
Mid
|
||||||
High
|
High
|
||||||
Top
|
Top
|
||||||
PriorityQueue // number of queues
|
PriorityQueue // number of queues
|
||||||
PriorityQueueCap = 3 // queue capacity
|
PriorityQueueCap = 3 // queue capacity
|
||||||
|
HashSize = 32
|
||||||
)
|
)
|
||||||
|
|
||||||
// Handover represents a statement that the upstream peer hands over the stream section
|
// Handover represents a statement that the upstream peer hands over the stream section
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue