modify error message
This commit is contained in:
parent
97e2897f2d
commit
9e43c7b93a
@ -6,6 +6,8 @@ import "./ERC20Token.sol";
|
|||||||
contract Token is ERC20Token, AragonApp {
|
contract Token is ERC20Token, AragonApp {
|
||||||
bytes32 public constant MINT_TOKEN_ROLE = keccak256("MINT_TOKEN_ROLE");
|
bytes32 public constant MINT_TOKEN_ROLE = keccak256("MINT_TOKEN_ROLE");
|
||||||
|
|
||||||
|
string private constant ERROR_INVALID_AMOUNT = "Amount should be greater than zero";
|
||||||
|
|
||||||
// ensure alphabetic order
|
// ensure alphabetic order
|
||||||
enum Apps { Contribution, Contributor, Proposal, Token }
|
enum Apps { Contribution, Contributor, Proposal, Token }
|
||||||
bytes32[4] public appIds;
|
bytes32[4] public appIds;
|
||||||
@ -21,7 +23,7 @@ contract Token is ERC20Token, AragonApp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mintFor(address contributorAccount, uint256 amount, uint32 contributionId) public isInitialized auth(MINT_TOKEN_ROLE) {
|
function mintFor(address contributorAccount, uint256 amount, uint32 contributionId) public isInitialized auth(MINT_TOKEN_ROLE) {
|
||||||
require(amount > 0, "amount should be greater than zero");
|
require(amount > 0, ERROR_INVALID_AMOUNT);
|
||||||
|
|
||||||
uint256 amountInWei = amount.mul(1 ether);
|
uint256 amountInWei = amount.mul(1 ether);
|
||||||
_mint(contributorAccount, amountInWei);
|
_mint(contributorAccount, amountInWei);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user