mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-06 23:33:12 +00:00
6 lines
161 B
JavaScript
6 lines
161 B
JavaScript
|
|
async function waitUntilExpired(expiry) {
|
||
|
|
await ethers.provider.send("hardhat_mine", [ethers.utils.hexValue(expiry)])
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = { waitUntilExpired }
|