Skip to content

Commit

Permalink
fix: sweeping before withdrawal (#4337)
Browse files Browse the repository at this point in the history
* doc: correct Error message

* fix: sweep before withdrawal
  • Loading branch information
AlastairHolmes committed Dec 12, 2023
1 parent e8fd491 commit 7d0fcd1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions state-chain/pallets/cf-lp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ pub mod pallet {
type SafeMode: Get<PalletSafeMode>;

/// The interface for sweeping funds from pools into free balance
type PoolApi: PoolApi;
type PoolApi: PoolApi<AccountId = <Self as frame_system::Config>::AccountId>;

/// Benchmark weights
type WeightInfo: WeightInfo;
}

#[pallet::error]
pub enum Error<T> {
/// The user does not have enough fund.
/// The user does not have enough funds.
InsufficientBalance,
/// The user has reached the maximum balance.
BalanceOverflow,
Expand Down Expand Up @@ -197,6 +197,9 @@ pub mod pallet {
Error::<T>::InvalidEgressAddress
);

// Sweep earned fees
T::PoolApi::sweep(&account_id)?;

// Debit the asset from the account.
Self::try_debit_account(&account_id, asset, amount)?;

Expand Down

0 comments on commit 7d0fcd1

Please sign in to comment.