We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8391eb commit 7ff257fCopy full SHA for 7ff257f
tip-router-operator-cli/src/reclaim.rs
@@ -191,11 +191,8 @@ fn close_priority_fee_claim_transactions(
191
192
let instructions: Vec<_> = accounts
193
.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)
+ .map(|(pubkey, account)| {
+ close_pf_claim_status_ix(config_pubkey, *pubkey, account.claim_status_payer)
199
})
200
.collect();
201
0 commit comments