* switch to using Context internally
* add context import
* Add smoke test to make sure enabling GSN support works
* Update test/GSN/ERC721GSNRecipientMock.test.js
Co-Authored-By: Francisco Giordano <frangio.1@gmail.com>
* Upgrade truffle
* add missing awaits
* Revert "Upgrade truffle"
This reverts commit f9b0ba9019.
14 lines
256 B
Solidity
14 lines
256 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "../token/ERC20/ERC20Capped.sol";
|
|
import "./MinterRoleMock.sol";
|
|
|
|
|
|
contract ERC20CappedMock is ERC20Capped, MinterRoleMock {
|
|
|
|
constructor(uint256 cap) public {
|
|
ERC20Capped.initialize(cap, _msgSender());
|
|
}
|
|
|
|
}
|