1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use crate::error::*;
use crate::state::*;
use anchor_lang::prelude::*;

#[derive(Accounts)]
pub struct PerpSettlePnl<'info> {
    #[account(
        constraint = group.load()?.is_ix_enabled(IxGate::PerpSettlePnl) @ MangoError::IxIsDisabled,
    )]
    pub group: AccountLoader<'info, Group>,

    #[account(
        mut,
        has_one = group,
        constraint = settler.load()?.is_operational() @ MangoError::AccountIsFrozen
        // settler_owner is checked at #1
    )]
    pub settler: AccountLoader<'info, MangoAccountFixed>,
    pub settler_owner: Signer<'info>,

    #[account(has_one = group, has_one = oracle)]
    pub perp_market: AccountLoader<'info, PerpMarket>,

    // This account MUST be profitable
    #[account(mut,
        has_one = group,
        constraint = account_a.load()?.is_operational() @ MangoError::AccountIsFrozen
    )]
    pub account_a: AccountLoader<'info, MangoAccountFixed>,
    // This account MUST have a loss
    #[account(
        mut,
        has_one = group,
        constraint = account_b.load()?.is_operational() @ MangoError::AccountIsFrozen
    )]
    pub account_b: AccountLoader<'info, MangoAccountFixed>,

    /// CHECK: Oracle can have different account types, constrained by address in perp_market
    pub oracle: UncheckedAccount<'info>,

    // bank correctness is checked at #2
    #[account(mut, has_one = group)]
    pub settle_bank: AccountLoader<'info, Bank>,

    /// CHECK: Oracle can have different account types
    #[account(address = settle_bank.load()?.oracle)]
    pub settle_oracle: UncheckedAccount<'info>,
}