Skip to content
Snippets Groups Projects
Commit e770a0b1 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

comments

parent dac807f2
Branches
Tags
No related merge requests found
...@@ -98,6 +98,7 @@ func (m *manager) follow(rng csprng.Source, comms followNetworkComms) { ...@@ -98,6 +98,7 @@ func (m *manager) follow(rng csprng.Source, comms followNetworkComms) {
} }
var filterList []*bloom.Ring var filterList []*bloom.Ring
for _, f := range pollResp.BloomFilters { for _, f := range pollResp.BloomFilters {
jww.INFO.Printf("Bloom Filter received: %v", f)
filter := &bloom.Ring{} filter := &bloom.Ring{}
if err := filter.UnmarshalBinary(f); err != nil { if err := filter.UnmarshalBinary(f); err != nil {
jww.WARN.Printf("Failed to unmarshal filter: %+v", err) jww.WARN.Printf("Failed to unmarshal filter: %+v", err)
...@@ -105,6 +106,7 @@ func (m *manager) follow(rng csprng.Source, comms followNetworkComms) { ...@@ -105,6 +106,7 @@ func (m *manager) follow(rng csprng.Source, comms followNetworkComms) {
} }
filterList = append(filterList, filter) filterList = append(filterList, filter)
} }
jww.INFO.Printf("Bloom filters found in response: %d", len(filterList))
// ---- Node Events ---- // ---- Node Events ----
// NOTE: this updates the structure, AND sends events over the node // NOTE: this updates the structure, AND sends events over the node
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment