Skip to content

Commit

Permalink
fix(Reserve): fix checkpoints test
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrickGT committed Oct 7, 2021
1 parent 2d047ba commit 32c9632
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/test/ERC20Mintable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ contract ERC20Mintable is ERC20 {
*
* - the caller must have the {MinterRole}.
*/
function mint(address account, uint256 amount) public returns (bool) {
function mint(address account, uint256 amount) public {
_mint(account, amount);
return true;
}

function burn(address account, uint256 amount) public returns (bool) {
Expand Down

0 comments on commit 32c9632

Please sign in to comment.