Skip to content

Commit c3f8151

Browse files
committed
fix(contract): increase minimum time after bid to 5 minutes
1 parent f76a032 commit c3f8151

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/aptos/Move.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "AuctionHouse"
3-
version = "0.0.2"
3+
version = "0.0.3"
44

55
[dependencies]
6-
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework", rev="main" }
7-
AptosToken = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token", rev="main" }
6+
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework", rev="120ff1cd8a3bb39c1c68cc70c112fd0e8e117955" }
7+
AptosToken = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token", rev="120ff1cd8a3bb39c1c68cc70c112fd0e8e117955" }
88

99
[addresses]
1010
std = "0x1"

contracts/aptos/sources/auctionhouse.move

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module auctionhouse::AuctionHouse {
4040
// System consts
4141

4242
/// Each bid must run for at least 10 minutes before ending the auction
43-
const MINIMUM_TIME_AFTER_BID: u64 = 100000000;
43+
const MINIMUM_TIME_AFTER_BID: u64 = 300000000;
4444

4545
/// Auction representation to be stored
4646
struct Auction has store {

0 commit comments

Comments
 (0)