Skip to content

Commit

Permalink
fix: adjust fuel in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Lohachov Mykhailo <[email protected]>
  • Loading branch information
aoyako committed Feb 12, 2025
1 parent 0958bff commit fee7e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/iroha/tests/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ fn upgrade_executor(client: &Client, executor: impl AsRef<str>) -> Result<()> {
if !profile.is_optimized() {
client.submit_all_blocking::<InstructionBox>([InstructionBox::SetParameter(
SetParameter::new(Parameter::Executor(SmartContractParameter::Fuel(
std::num::NonZeroU64::new(80_000_000_u64).expect("Fuel must be positive."),
std::num::NonZeroU64::new(90_000_000_u64).expect("Fuel must be positive."),
))),
)])?;
}
Expand Down

0 comments on commit fee7e9e

Please sign in to comment.