27 lines
600 B
Solidity
27 lines
600 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./Collateral.sol";
|
|
|
|
// exposes internal functions for testing
|
|
contract TestCollateral is Collateral {
|
|
// solhint-disable-next-line no-empty-blocks
|
|
constructor(IERC20 token) Collateral(token) {}
|
|
|
|
function slash(address account, uint256 percentage) public {
|
|
_slash(account, percentage);
|
|
}
|
|
|
|
function createLock(LockId id, uint256 expiry) public {
|
|
_createLock(id, expiry);
|
|
}
|
|
|
|
function lock(address account, LockId id) public {
|
|
_lock(account, id);
|
|
}
|
|
|
|
function unlock(LockId id) public {
|
|
_unlock(id);
|
|
}
|
|
}
|