forked from wormhole-foundation/example-liquidity-layer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclose.rs
48 lines (41 loc) · 1.21 KB
/
close.rs
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 std::ops::Deref;
use crate::{
error::MatchingEngineError,
state::{Auction, AuctionStatus},
};
use anchor_lang::prelude::*;
#[derive(Accounts)]
#[event_cpi]
pub struct CloseAuction<'info> {
#[account(
mut,
close = beneficiary,
constraint = {
require!(
matches!(auction.status, AuctionStatus::Settled {..}),
MatchingEngineError::AuctionNotSettled,
);
let expiration =
i64::from(auction.vaa_timestamp).saturating_add(crate::VAA_AUCTION_EXPIRATION_TIME);
require!(
Clock::get().unwrap().unix_timestamp >= expiration,
MatchingEngineError::CannotCloseAuctionYet,
);
true
}
)]
auction: Account<'info, Auction>,
/// CHECK: This account is whoever originally created the auction account (see
/// [Auction::prepared_by].
#[account(
mut,
address = auction.prepared_by,
)]
beneficiary: UncheckedAccount<'info>,
}
pub fn close_auction(ctx: Context<CloseAuction>) -> Result<()> {
emit_cpi!(crate::events::AuctionClosed {
auction: ctx.accounts.auction.deref().clone(),
});
Ok(())
}