17 lines
413 B
Solidity
17 lines
413 B
Solidity
![]() |
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
import "../GSN/GSNRecipient.sol";
|
||
|
import "../GSN/GSNRecipientSignature.sol";
|
||
|
|
||
|
contract GSNRecipientSignatureMock is GSNRecipient, GSNRecipientSignature {
|
||
|
constructor(address trustedSigner) public GSNRecipientSignature(trustedSigner) { }
|
||
|
|
||
|
event MockFunctionCalled();
|
||
|
|
||
|
function mockFunction() public {
|
||
|
emit MockFunctionCalled();
|
||
|
}
|
||
|
}
|