@@ -111,20 +111,21 @@ fn prepare_order_execution<'info>(
111
111
112
112
// If the initial offer token account doesn't exist anymore, we have nowhere to send the
113
113
// init auction fee. The executor will get these funds instead.
114
- if !initial_offer_token. data_is_empty ( ) {
115
- // Deserialize to token account to find owner. We know this is a legitimate token
116
- // account, so it is safe to borrow and unwrap here.
117
- {
118
- let mut acc_data: & [ _ ] = & initial_offer_token. data . borrow ( ) ;
119
- let token_data = token:: TokenAccount :: try_deserialize ( & mut acc_data) . unwrap ( ) ;
120
- require_keys_eq ! (
121
- token_data. owner,
122
- initial_participant. key( ) ,
123
- ErrorCode :: ConstraintTokenOwner
124
- ) ;
114
+ //
115
+ // Deserialize to token account to find owner. We check that this is a legitimate token
116
+ // account.
117
+ if let Some ( token_data) =
118
+ utils:: checked_deserialize_token_account ( initial_offer_token, & custody_token. mint )
119
+ {
120
+ // Before setting the beneficiary to the initial participant, we need to make sure that
121
+ // he is the owner of this token account.
122
+ require_keys_eq ! (
123
+ token_data. owner,
124
+ initial_participant. key( ) ,
125
+ ErrorCode :: ConstraintTokenOwner
126
+ ) ;
125
127
126
- beneficiary. replace ( initial_participant. to_account_info ( ) ) ;
127
- }
128
+ beneficiary. replace ( initial_participant. to_account_info ( ) ) ;
128
129
129
130
if best_offer_token. key ( ) != initial_offer_token. key ( ) {
130
131
// Pay the auction initiator their fee.
@@ -155,8 +156,8 @@ fn prepare_order_execution<'info>(
155
156
// Return the security deposit and the fee to the highest bidder.
156
157
//
157
158
if best_offer_token. key ( ) == executor_token. key ( ) {
158
- // If the best offer token is equal to the executor token, just send whatever remains in the
159
- // custody token account.
159
+ // If the best offer token is equal to the executor token, just send whatever remains in
160
+ // the custody token account.
160
161
//
161
162
// NOTE: This will revert if the best offer token does not exist. But this will present
162
163
// an opportunity for another executor to execute this order and take what the best
@@ -177,7 +178,9 @@ fn prepare_order_execution<'info>(
177
178
// Otherwise, send the deposit and fee to the best offer token. If the best offer token
178
179
// doesn't exist at this point (which would be unusual), we will reserve these funds
179
180
// for the executor token.
180
- if !best_offer_token. data_is_empty ( ) {
181
+ if utils:: checked_deserialize_token_account ( best_offer_token, & custody_token. mint )
182
+ . is_some ( )
183
+ {
181
184
token:: transfer (
182
185
CpiContext :: new_with_signer (
183
186
token_program. to_account_info ( ) ,
0 commit comments