Procházet zdrojové kódy

light: fix duplicated argument in bytes.Equal call

Most probably a copy/paste kind of error.
Found with gocritic `dupArg` checker.
Iskander (Alex) Sharipov před 7 roky
rodič
revize
da6e6e7971
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      light/trie_test.go

+ 1 - 1
light/trie_test.go

@@ -64,7 +64,7 @@ func diffTries(t1, t2 state.Trie) error {
 			spew.Dump(i2)
 			return fmt.Errorf("tries have different keys %x, %x", i1.Key, i2.Key)
 		}
-		if !bytes.Equal(i2.Value, i2.Value) {
+		if !bytes.Equal(i1.Value, i2.Value) {
 			return fmt.Errorf("tries differ at key %x", i1.Key)
 		}
 	}