diff --git a/contracts/SlotReservations.sol b/contracts/SlotReservations.sol index 67b0708..5ab0439 100644 --- a/contracts/SlotReservations.sol +++ b/contracts/SlotReservations.sol @@ -2,7 +2,6 @@ pragma solidity 0.8.23; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; -import "./Configuration.sol"; import "./Requests.sol"; contract SlotReservations { diff --git a/deploy/marketplace.js b/deploy/marketplace.js index 044bf75..835b244 100644 --- a/deploy/marketplace.js +++ b/deploy/marketplace.js @@ -15,9 +15,6 @@ const CONFIGURATION = { // in automine mode, because it can produce a block every second downtime: 64, downtimeProduct: 67, - // saturate addresses eligible to reserve slots 20% of the total time before - // expiry - saturation: 20 }, } diff --git a/test/examples.js b/test/examples.js index 8ca6e44..9f253ff 100644 --- a/test/examples.js +++ b/test/examples.js @@ -16,9 +16,6 @@ const exampleConfiguration = () => ({ zkeyHash: "", downtimeProduct: 67, }, - reservations: { - saturation: 20, - }, }) const exampleRequest = async () => {