Skip to content

Commit

Permalink
increase adjustment limits
Browse files Browse the repository at this point in the history
  • Loading branch information
heytdep committed Oct 29, 2024
1 parent 3ad7e9d commit ac2c193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions soroban-simulation/src/simulation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ fn create_transaction_data(
resource_fee: i64,
) -> SorobanTransactionData {
SorobanTransactionData {
resources: SorobanResources { footprint: resources.footprint, instructions: resources.instructions + 10000, read_bytes: resources.read_bytes + 200, write_bytes: resources.read_bytes + 200 },
resource_fee: resource_fee + 440500,
resources: SorobanResources { footprint: resources.footprint, instructions: resources.instructions + 10000, read_bytes: resources.read_bytes + 00, write_bytes: resources.read_bytes + 200 },
resource_fee: resource_fee + 1440500,
ext: SorobanTransactionDataExt::V0,
}
}
Expand Down

0 comments on commit ac2c193

Please sign in to comment.