Skip to content

Commit

Permalink
fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberphysic4l committed Jan 15, 2025
1 parent 43f618f commit 5625d6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ module iota_system::iota_system {
validator_subsidy: u64,
storage_charge: Balance<IOTA>,
computation_charge: Balance<IOTA>,
computation_charge_burned: u64,
wrapper: &mut IotaSystemState,
new_epoch: u64,
next_protocol_version: u64,
storage_rebate: u64,
non_refundable_storage_fee: u64,
reward_slashing_rate: u64,
epoch_start_timestamp_ms: u64,
computation_charge_burned: u64,
ctx: &mut TxContext,
) : Balance<IOTA> {
let self = load_system_state_mut(wrapper);
Expand Down
2 changes: 1 addition & 1 deletion crates/transaction-fuzzer/src/type_arg_fuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::{
executor::{Executor, assert_is_acceptable_result},
};

const GAS_PRICE: u64 = 700;
const GAS_PRICE: u64 = 1000;
const GAS: u64 = 1_000_000 * GAS_PRICE;

pub fn gen_type_tag() -> impl Strategy<Value = TypeTag> {
Expand Down

0 comments on commit 5625d6c

Please sign in to comment.