Linter fix

This commit is contained in:
Christopher Goes 2018-11-09 16:43:46 +01:00
parent d761eb7282
commit f9c7281124
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvA cmn.KVPair
return kvA, kvB, count, false
}
for _, prefix := range prefixesToSkip {
// Skip value comparision if we matched a prefix
// Skip value comparison if we matched a prefix
if bytes.Equal(kvA.Key[:len(prefix)], prefix) {
count++
continue