File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
modules/stake_delta_filter/src Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -313,10 +313,10 @@ impl Tracker {
313313
314314/// Internal helper used during `process_message` aggregation for deduplication.
315315struct StakeEntry {
316- delta : i64 ,
317- addresses : Vec < ShelleyAddress > ,
318- seen : HashSet < ShelleyAddress > ,
319- }
316+ delta : i64 ,
317+ addresses : Vec < ShelleyAddress > ,
318+ seen : HashSet < ShelleyAddress > ,
319+ }
320320
321321/// Iterates through all address deltas in `delta`, leaves only stake addresses
322322/// (and removes all others). If the address is a pointer, tries to resolve it.
@@ -328,8 +328,7 @@ pub fn process_message(
328328 block : & BlockInfo ,
329329 mut tracker : Option < & mut Tracker > ,
330330) -> StakeAddressDeltasMessage {
331- let mut grouped: HashMap < StakeAddress , StakeEntry > =
332- HashMap :: new ( ) ;
331+ let mut grouped: HashMap < StakeAddress , StakeEntry > = HashMap :: new ( ) ;
333332
334333 for d in delta. deltas . iter ( ) {
335334 // Variants to be processed:
You can’t perform that action at this time.
0 commit comments