mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-09 19:36:19 +00:00
19 lines
351 B
Solidity
19 lines
351 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./Stakes.sol";
|
|
|
|
// exposes internal functions of Stakes for testing
|
|
contract TestStakes is Stakes {
|
|
|
|
constructor(IERC20 token) Stakes(token) {}
|
|
|
|
function lock(address account) public {
|
|
_lock(account);
|
|
}
|
|
|
|
function unlock(address account) public {
|
|
_unlock(account);
|
|
}
|
|
}
|