Skip to content

Commit

Permalink
Fix gas limit multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
danimhr committed Sep 23, 2024
1 parent ee530d6 commit 2def70b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auction-server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auction-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auction-server"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
license-file = "license.txt"

Expand Down
2 changes: 1 addition & 1 deletion auction-server/src/auction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ pub async fn handle_bid(
verify_bid_under_gas_limit(
chain_store,
estimated_gas,
U256::from(TOTAL_BIDS_PER_AUCTION * 2),
U256::from(TOTAL_BIDS_PER_AUCTION),
)
.await?;

Expand Down

0 comments on commit 2def70b

Please sign in to comment.