Skip to content

Commit

Permalink
Update base price for withdrawals
Browse files Browse the repository at this point in the history
Signed-off-by: deniallugo <[email protected]>
  • Loading branch information
Deniallugo committed May 20, 2022
1 parent 036f627 commit ce55ba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/lib/types/src/gas_counter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ impl VerifyCost {
pub const TRANSFER_TO_NEW_COST: u64 = 0;
pub const SWAP_COST: u64 = 0;
pub const FULL_EXIT_COST: u64 = 30_000;
pub const WITHDRAW_COST: u64 = 48_000;
pub const WITHDRAW_COST: u64 = 90_000;
pub const FORCED_EXIT_COST: u64 = Self::WITHDRAW_COST;
pub const MINT_NFT_COST: u64 = 0;
pub const WITHDRAW_NFT_COST: u64 = 200_000;
pub const WITHDRAW_NFT_COST: u64 = 300_000;

pub fn base_cost() -> U256 {
U256::from(Self::BASE_COST)
Expand Down

0 comments on commit ce55ba9

Please sign in to comment.