what a nice code! I have a confuse that Line 248 in consistent.go ``` hashes := c.sortedHashes[:0] ``` it seems that this line is not necessary ,maybe we could replace like the code below directly? ``` hashes := []uint32 ```