From 5625d6c42ee57fa730c97988b8157de51f8a030c Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 15 Jan 2025 12:41:50 +0000 Subject: [PATCH] fix some tests --- .../mock_iota_systems/base/sources/iota_system.move | 2 +- crates/transaction-fuzzer/src/type_arg_fuzzer.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/iota-e2e-tests/tests/framework_upgrades/mock_iota_systems/base/sources/iota_system.move b/crates/iota-e2e-tests/tests/framework_upgrades/mock_iota_systems/base/sources/iota_system.move index 2a6fb0c5e36..fe7356c4e12 100644 --- a/crates/iota-e2e-tests/tests/framework_upgrades/mock_iota_systems/base/sources/iota_system.move +++ b/crates/iota-e2e-tests/tests/framework_upgrades/mock_iota_systems/base/sources/iota_system.move @@ -52,7 +52,6 @@ module iota_system::iota_system { validator_subsidy: u64, storage_charge: Balance, computation_charge: Balance, - computation_charge_burned: u64, wrapper: &mut IotaSystemState, new_epoch: u64, next_protocol_version: u64, @@ -60,6 +59,7 @@ module iota_system::iota_system { non_refundable_storage_fee: u64, reward_slashing_rate: u64, epoch_start_timestamp_ms: u64, + computation_charge_burned: u64, ctx: &mut TxContext, ) : Balance { let self = load_system_state_mut(wrapper); diff --git a/crates/transaction-fuzzer/src/type_arg_fuzzer.rs b/crates/transaction-fuzzer/src/type_arg_fuzzer.rs index 77e26eff292..64af5301151 100644 --- a/crates/transaction-fuzzer/src/type_arg_fuzzer.rs +++ b/crates/transaction-fuzzer/src/type_arg_fuzzer.rs @@ -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 {