Skip to content

Commit

Permalink
feat: optimise gas costs for publishing modules
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoks committed May 13, 2024
1 parent c381301 commit d33e3b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion move-vm-backend-common/src/gas_schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use move_stdlib::natives::GasParameters;
use move_vm_test_utils::gas_schedule::{new_from_instructions, CostTable, GasCost};

/// A predefined gas cost to published byte ratio.
pub const GAS_COST_PER_PUBLISHED_BYTE: u64 = 100;
pub const GAS_COST_PER_PUBLISHED_BYTE: u64 = 10;

/// Generic gas cost table scale factor, that will be applied linearly.
pub const TABLE_GAS_COST_SCALE_FACTOR: f64 = 1.0;
Expand Down

0 comments on commit d33e3b6

Please sign in to comment.