mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-02 01:23:45 +00:00
whisper: fix typo
This commit is contained in:
parent
cf52d5c91f
commit
62c239f608
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue