Skip to content

Commit a292052

Browse files
authored
Merge pull request #311 from remedcu/master
RAB Pragma Added
2 parents 1781b16 + 7788d51 commit a292052

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
/**
2-
* @title Mini Me Token ERC20
3-
* Overwrite the MiniMeToken to make it follow ERC20 recommendation.
4-
* This is required because the base token reverts when approve is used with the non zero value while allowed is non zero (which not recommended by the standard, see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md).
5-
* @author Clément Lesaege - <clement@lesaege.com>
6-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
2+
* @authors: [@clesaege]
3+
* @reviewers: [@remedcu]
4+
* @auditors: []
5+
* @bounties: []
6+
* @deployments: []
77
*/
88

99
pragma solidity ^0.4.18;
1010

1111
import "minimetoken/contracts/MiniMeToken.sol";
1212

13+
/**
14+
* @title Mini Me Token ERC20
15+
* @notice Overwrite the MiniMeToken to make it follow ERC20 recommendation.
16+
* @dev This is required because the base token reverts when approve is used with the non zero value while allowed is non zero (which not recommended by the standard, see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md).
17+
* @author Clément Lesaege - <clement@lesaege.com>
18+
*/
1319
contract MiniMeTokenERC20 is MiniMeToken {
1420

1521
/** @notice Constructor to create a MiniMeTokenERC20

0 commit comments

Comments
 (0)