Skip to content

Commit

Permalink
Parents go first
Browse files Browse the repository at this point in the history
  • Loading branch information
jancionear committed Jan 14, 2025
1 parent d73b46e commit 13cecd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/runtime/src/congestion_control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ impl ReceiptSinkV2 {
{
let parent_receipt_sizes_iter =
parent_metadata.iter_receipt_group_sizes(trie, side_effects);
receipt_sizes_iter = Box::new(receipt_sizes_iter.chain(parent_receipt_sizes_iter));
receipt_sizes_iter = Box::new(parent_receipt_sizes_iter.chain(receipt_sizes_iter));
}
}

Expand Down

0 comments on commit 13cecd3

Please sign in to comment.