whisper: fix typo

This commit is contained in:
b00ris 2018-02-28 14:38:42 +03:00
parent cf52d5c91f
commit 62c239f608
No known key found for this signature in database
GPG Key ID: 2F73E159EB73232C
1 changed files with 2 additions and 2 deletions

View File

@ -472,9 +472,9 @@ func checkBloomFilterExchangeOnce(t *testing.T, mustPass bool) bool {
for i, node := range nodes {
for peer := range node.shh.peers {
peer.bloomMu.Lock()
eqals := bytes.Equal(peer.bloomFilter, masterBloomFilter)
equals := bytes.Equal(peer.bloomFilter, masterBloomFilter)
peer.bloomMu.Unlock()
if !eqals {
if !equals {
if mustPass {
t.Fatalf("node %d: failed to exchange bloom filter requirement in round %d. \n%x expected \n%x got",
i, round, masterBloomFilter, peer.bloomFilter)