Skip to content

Commit

Permalink
Enable can_withdraw for smart chain
Browse files Browse the repository at this point in the history
  • Loading branch information
gemcoder21 committed Nov 14, 2024
1 parent 59142d5 commit 33f1cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/primitives/src/chain_stake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ impl StakeChain {

pub fn get_can_withdraw(&self) -> bool {
match self {
Self::Solana | Self::Tron => true,
Self::Cosmos | Self::Osmosis | Self::Injective | Self::Sei | Self::Celestia | Self::SmartChain | Self::Sui | Self::Ethereum => false,
Self::Solana | Self::Tron | Self::SmartChain => true,
Self::Cosmos | Self::Osmosis | Self::Injective | Self::Sei | Self::Celestia | Self::Sui | Self::Ethereum => false,
}
}

Expand Down

0 comments on commit 33f1cd3

Please sign in to comment.