You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,21 @@
1
1
/**
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: []
7
7
*/
8
8
9
9
pragma solidity^0.4.18;
10
10
11
11
import"minimetoken/contracts/MiniMeToken.sol";
12
12
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
+
*/
13
19
contractMiniMeTokenERC20isMiniMeToken {
14
20
15
21
/** @notice Constructor to create a MiniMeTokenERC20
0 commit comments