Skip to content

Commit

Permalink
[pipeline] fix claim settlement reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Jun 3, 2024
1 parent 67965dc commit f6175f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settlement-pipelines/src/bin/claim_settlement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,8 +678,8 @@ impl PrintReportable for ClaimSettlementReport {
.push((pubkey, settlement));
}
let mut report: Vec<String> = vec![];
let mut claim_settlements_accounts_created: u64 = 0;
for epoch in grouped_by_epoch.keys() {
let mut claim_settlements_accounts_created: u64 = 0;
let settlements_claimable_after_group = grouped_by_epoch
.get(epoch)
.expect("Epoch key expected to exist when iterating over keys");
Expand Down

0 comments on commit f6175f8

Please sign in to comment.