Skip to content

Commit

Permalink
fix: inverse gas scaling factor.
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger committed Feb 27, 2025
1 parent 10d31f6 commit 339b06c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ generate_gas_upgrade_module!(gas_upgrade, BiarritzRc1, {
let mut gas_parameters = AptosGasParameters::initial();
gas_parameters.vm.txn.max_transaction_size_in_bytes = GasQuantity::new(100_000_000);
gas_parameters.vm.txn.max_execution_gas = GasQuantity::new(10_000_000_000);
gas_parameters.vm.txn.gas_unit_scaling_factor = GasQuantity::new(20_000_000);
gas_parameters.vm.txn.gas_unit_scaling_factor = GasQuantity::new(50_000);
aptos_types::on_chain_config::GasScheduleV2 {
feature_version: aptos_gas_schedule::LATEST_GAS_FEATURE_VERSION,
entries: gas_parameters
Expand Down

0 comments on commit 339b06c

Please sign in to comment.