Skip to content

Commit

Permalink
Merge pull request #86 from Cerebellum-Network/feature/silence-events…
Browse files Browse the repository at this point in the history
…-decoder-errors

Silence events decoder errors
  • Loading branch information
khssnv committed Apr 23, 2024
2 parents 811cf09 + a6528f9 commit 7e693f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockchain/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (c *Client) StartEventsListening(
events := &pallets.Events{}
err = types.EventRecordsRaw(change.StorageData).DecodeEventRecords(meta, events)
if err != nil {
c.errsListening <- fmt.Errorf("events decoder: %w", err)
// c.errsListening <- fmt.Errorf("events decoder: %w", err) // TODO
continue
}

Expand Down

0 comments on commit 7e693f3

Please sign in to comment.