You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
381 B
23 lines
381 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
|
|
||
|
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
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|