enforce min & max lease period

This commit is contained in:
2022-09-05 22:17:55 +00:00
parent f1ea4edca8
commit 8711758f20
4 changed files with 33 additions and 9 deletions

View File

@@ -1,10 +1,12 @@
package auctionconfig
// Length of the auction in blocks-- currently 10.
// Assuming a block time of 3sec, this should be ~30sec.
const (
// Times
AuctionTime = 10
AuctionTime = 10 // 10 blocks = ~10-30 seconds
// Lease Period Requirements (seconds)
MinLeasePeriod = 3_600 // 1 hour
MaxLeasePeriod = 8_035_200 // 3 months
// Gas Fees
AuctionGas = 10