aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/kademlia/address.go
diff options
context:
space:
mode:
Diffstat (limited to 'swarm/network/kademlia/address.go')
-rw-r--r--swarm/network/kademlia/address.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/swarm/network/kademlia/address.go b/swarm/network/kademlia/address.go
index 16c5ce532..4c38a846f 100644
--- a/swarm/network/kademlia/address.go
+++ b/swarm/network/kademlia/address.go
@@ -67,7 +67,7 @@ func proximity(one, other Address) (ret int) {
for i := 0; i < len(one); i++ {
oxo := one[i] ^ other[i]
for j := 0; j < 8; j++ {
- if (uint8(oxo)>>uint8(7-j))&0x01 != 0 {
+ if (oxo>>uint8(7-j))&0x01 != 0 {
return i*8 + j
}
}