* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
23 lines
381 B
Solidity
23 lines
381 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
import "../access/SignatureBouncer.sol";
|
|
|
|
|
|
contract SignatureBouncerMock is SignatureBouncer {
|
|
function checkValidSignature(address _address, bytes _sig)
|
|
public
|
|
view
|
|
returns (bool)
|
|
{
|
|
return isValidSignature(_address, _sig);
|
|
}
|
|
|
|
function onlyWithValidSignature(bytes _sig)
|
|
onlyValidSignature(_sig)
|
|
public
|
|
view
|
|
{
|
|
|
|
}
|
|
}
|