Skip to content

Commit

Permalink
updated the fees padding factor to 3M
Browse files Browse the repository at this point in the history
  • Loading branch information
sreuland committed Dec 11, 2023
1 parent c0b84da commit 6724e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/lib/preflight/src/fees.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ fn calculate_host_function_soroban_resources(
.get_cpu_insns_consumed()
.context("cannot get instructions consumed")?;
let instructions = max(
budget_instructions + 1000000,
budget_instructions + 3000000,
budget_instructions * 120 / 100,
);
Ok(SorobanResources {
Expand Down

0 comments on commit 6724e1c

Please sign in to comment.