Commit c498a1d2 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet Committed by Brian Tiger Chow

refactored keyspace Adjusted -> Bytes

parent 955487f2
......@@ -25,8 +25,8 @@ func (id ID) equal(other ID) bool {
}
func (id ID) less(other ID) bool {
a := ks.Key{Space: ks.XORKeySpace, Adjusted: id}
b := ks.Key{Space: ks.XORKeySpace, Adjusted: other}
a := ks.Key{Space: ks.XORKeySpace, Bytes: id}
b := ks.Key{Space: ks.XORKeySpace, Bytes: other}
return a.Less(b)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment