mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-03 22:03:08 +00:00
24 lines
504 B
Solidity
24 lines
504 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.28;
|
|
|
|
import "../../contracts/Vault.sol";
|
|
|
|
contract VaultHarness is Vault {
|
|
constructor(IERC20 token) Vault(token) {}
|
|
|
|
function publicStatus(
|
|
Controller controller,
|
|
FundId fundId
|
|
) public view returns (FundStatus) {
|
|
return _getFundStatus(controller, fundId);
|
|
}
|
|
|
|
function unwrapTimestamp(
|
|
Timestamp timestamp
|
|
) public pure returns (uint40) {
|
|
return Timestamp.unwrap(timestamp);
|
|
}
|
|
|
|
|
|
}
|