Skip to content

Commit

Permalink
beautify other gtest constants
Browse files Browse the repository at this point in the history
  • Loading branch information
breathx committed Dec 10, 2024
1 parent 0daeb3b commit 35b474b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gtest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,10 @@ pub mod constants {

/// Gas allowance for executing user dispatch and set of generated
/// by programs dispatches from execution of the user dispatch.
pub const GAS_ALLOWANCE: Gas = 750_000_000_000;
pub const GAS_ALLOWANCE: Gas = 1_000_000_000_000;

/// Gas multiplier used to calculate equivalence of gas in token value.
pub const GAS_MULTIPLIER: GasMultiplier<Value, Gas> = GasMultiplier::ValuePerGas(6);
pub const GAS_MULTIPLIER: GasMultiplier<Value, Gas> = GasMultiplier::ValuePerGas(VALUE_PER_GAS);

/* Currency-related constants */

Expand Down Expand Up @@ -583,5 +583,5 @@ pub mod constants {
}

/// Default initial balance for users.
pub const DEFAULT_USERS_INITIAL_BALANCE: Value = EXISTENTIAL_DEPOSIT * 100_000;
pub const DEFAULT_USERS_INITIAL_BALANCE: Value = 100_000 * UNITS;
}

0 comments on commit 35b474b

Please sign in to comment.