From 3956470fce0857d91d96933ef93901c0909dd00c Mon Sep 17 00:00:00 2001 From: Balint Gabor Date: Fri, 12 Jan 2018 20:05:16 +0100 Subject: [PATCH] swarm/network: Move hashSize to end of const block --- swarm/network/streamer.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/swarm/network/streamer.go b/swarm/network/streamer.go index 9c6abc8bed..de259ba8fb 100644 --- a/swarm/network/streamer.go +++ b/swarm/network/streamer.go @@ -32,14 +32,13 @@ import ( ) const ( - HashSize = 32 - Low uint8 = iota Mid High Top PriorityQueue // number of queues PriorityQueueCap = 3 // queue capacity + HashSize = 32 ) // Handover represents a statement that the upstream peer hands over the stream section