Updated on 2026-08-14
This commit is contained in:
parent
8251b2ec98
commit
4c525f0cad
1 changed files with 1 additions and 1 deletions
|
|
@ -32,5 +32,5 @@ internal fun StakingActionType?.getPendingActionTitle(): TextReference = when (t
|
|||
internal fun isSolanaWithdraw(networkId: String, pendingActions: ImmutableList<PendingAction>?): Boolean {
|
||||
val isSolana = isSolana(networkId)
|
||||
val isWithdraw = pendingActions?.all { it.type == StakingActionType.WITHDRAW } == true
|
||||
return isSolana && isWithdraw
|
||||
return isSolana && isWithdraw && !pendingActions.isNullOrEmpty()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue