File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -177,22 +177,22 @@ let specific_filter = EventFilter::new()
177177 . contract_address (* counter_contract . address ())
178178 . event (Counter :: CountIncreased :: SIGNATURE );
179179
180- // Track a multiple events from a SPECIFIC contract
180+ // Track multiple events from a SPECIFIC contract
181181let specific_filter = EventFilter :: new ()
182182 . contract_address (* counter_contract . address ())
183183 . event (Counter :: CountIncreased :: SIGNATURE )
184184 . event (Counter :: CountDecreased :: SIGNATURE );
185185
186- // Track a SPECIFIC event from a ALL contracts
186+ // Track a SPECIFIC event from ALL contracts
187187let specific_filter = EventFilter :: new ()
188188 . event (Counter :: CountIncreased :: SIGNATURE );
189189
190- // Track ALL events from a SPECIFIC contracts
190+ // Track ALL events from SPECIFIC contracts
191191let all_contract_events_filter = EventFilter :: new ()
192192 . contract_address (* counter_contract . address ())
193193 . contract_address (* other_counter_contract . address ());
194194
195- // Track ALL events from ALL contracts in the block range
195+ // Track ALL events from ALL contracts
196196let all_events_filter = EventFilter :: new ();
197197```
198198
You can’t perform that action at this time.
0 commit comments