Skip to content

Commit 7ff257f

Browse files
committed
rm cursor slop
1 parent a8391eb commit 7ff257f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tip-router-operator-cli/src/reclaim.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,8 @@ fn close_priority_fee_claim_transactions(
191191

192192
let instructions: Vec<_> = accounts
193193
.iter()
194-
.map(|(pubkey, _account)| {
195-
// For priority fee distribution, we need to derive the claim_status_payer
196-
// This is typically the claimant who created the claim status account
197-
// For now, we'll use the signer as the payer since we don't have access to the original claimant
198-
close_pf_claim_status_ix(config_pubkey, *pubkey, payer)
194+
.map(|(pubkey, account)| {
195+
close_pf_claim_status_ix(config_pubkey, *pubkey, account.claim_status_payer)
199196
})
200197
.collect();
201198

0 commit comments

Comments
 (0)