From 4b864764782a06eca75dd42a03246f06f6540d51 Mon Sep 17 00:00:00 2001 From: Shebin John Date: Thu, 9 Apr 2020 18:42:54 +0530 Subject: [PATCH 1/2] RAB Pragma Added --- .../ArbitrableTokens/MiniMeTokenERC20.sol | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol b/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol index fa08ab2b..65ef0a2f 100644 --- a/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol +++ b/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol @@ -1,15 +1,21 @@ /** - * @title Mini Me Token ERC20 - * Overwrite the MiniMeToken to make it follow ERC20 recommendation. - * 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). - * @author Clément Lesaege - - * Bug Bounties: This code hasn't undertaken a bug bounty program yet. + * @authors: @clesaege + * @reviewers: @remedcu + * @auditors: [] + * @bounties: This code hasn't undertaken a bug bounty program yet. + * @deployments: [] */ pragma solidity ^0.4.18; import "minimetoken/contracts/MiniMeToken.sol"; + /** + * @title Mini Me Token ERC20 + * @notice Overwrite the MiniMeToken to make it follow ERC20 recommendation. + * @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). + * @author Clément Lesaege - + */ contract MiniMeTokenERC20 is MiniMeToken { /** @notice Constructor to create a MiniMeTokenERC20 From 7788d510e2367521a8183adda9b1d72fa4c1b01f Mon Sep 17 00:00:00 2001 From: Shebin John Date: Thu, 9 Apr 2020 20:44:21 +0530 Subject: [PATCH 2/2] Added [] to the RAB --- .../arbitration/ArbitrableTokens/MiniMeTokenERC20.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol b/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol index 65ef0a2f..2456c0df 100644 --- a/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol +++ b/contracts/standard/arbitration/ArbitrableTokens/MiniMeTokenERC20.sol @@ -1,8 +1,8 @@ /** - * @authors: @clesaege - * @reviewers: @remedcu + * @authors: [@clesaege] + * @reviewers: [@remedcu] * @auditors: [] - * @bounties: This code hasn't undertaken a bug bounty program yet. + * @bounties: [] * @deployments: [] */