Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- program: add bit_flags to liquidation record [#2053](https://github.com/drift-labs/protocol-v2/pull/2053)

### Fixes

- sdk: fix for initializing a new user account with a token2022 deposit
Expand Down
1 change: 1 addition & 0 deletions programs/drift/src/state/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ pub struct LiquidationRecord {
pub liquidate_perp_pnl_for_deposit: LiquidatePerpPnlForDepositRecord,
pub perp_bankruptcy: PerpBankruptcyRecord,
pub spot_bankruptcy: SpotBankruptcyRecord,
pub bit_flags: u8,
}

#[derive(Clone, Copy, BorshSerialize, BorshDeserialize, PartialEq, Eq, Default)]
Expand Down
Loading