pub fn can_partially_satisfy(
withdrawal: &PendingWithdrawal,
available_assets: u128,
) -> boolExpand description
Check if a withdrawal can be partially satisfied.
A partial satisfaction is possible when:
- Available assets are non-zero but less than expected.
- The available amount meets the minimum withdrawal threshold.
ยงArguments
withdrawal- The pending withdrawal request.available_assets- Assets currently available.