Skip to content

Commit

Permalink
rusk-wallet: Increase default gas limit for transfers & deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
HDauven committed Dec 12, 2024
1 parent b1c3c43 commit 0157079
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rusk-wallet/src/gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ use crate::currency::Lux;
pub const MIN_LIMIT: u64 = 100_000;

/// The default gas limit for transfer transactions
pub const DEFAULT_LIMIT_TRANSFER: u64 = 750_000;
pub const DEFAULT_LIMIT_TRANSFER: u64 = 2_500_000;

/// The default gas limit for a contract deployment
pub const DEFAULT_LIMIT_DEPLOYMENT: u64 = 5_000_000;
pub const DEFAULT_LIMIT_DEPLOYMENT: u64 = 15_000_000_000;

/// The default gas limit for contract calls
pub const DEFAULT_LIMIT_CALL: u64 = 2_000_000_000;
Expand Down

0 comments on commit 0157079

Please sign in to comment.