diff --git a/test/externalTests/solc-js/DAO/DAO.sol b/test/externalTests/solc-js/DAO/DAO.sol index 3aed551c6..d9cefcd0e 100644 --- a/test/externalTests/solc-js/DAO/DAO.sol +++ b/test/externalTests/solc-js/DAO/DAO.sol @@ -295,7 +295,7 @@ contract DAOInterface { /// @notice Send `_amount` tokens to `_to` from `msg.sender`. Prior to this /// getMyReward() is called. /// @param _to The address of the recipient - /// @param _amount The amount of tokens to be transfered + /// @param _amount The amount of tokens to be transferred /// @return Whether the transfer was successful or not function transferWithoutReward(address _to, uint256 _amount) public returns (bool success); @@ -303,7 +303,7 @@ contract DAOInterface { /// is approved by `_from`. Prior to this getMyReward() is called. /// @param _from The address of the sender /// @param _to The address of the recipient - /// @param _amount The amount of tokens to be transfered + /// @param _amount The amount of tokens to be transferred /// @return Whether the transfer was successful or not function transferFromWithoutReward( address payable _from, @@ -383,7 +383,7 @@ contract DAO is DAOInterface, Token, TokenCreation { revert(); lastTimeMinQuorumMet = now; minQuorumDivisor = 5; // sets the minimal quorum to 20% - proposals.length = 1; // avoids a proposal with ID 0 because it is used + proposals.push(); // avoids a proposal with ID 0 because it is used allowedRecipients[address(this)] = true; allowedRecipients[curator] = true; @@ -447,8 +447,8 @@ contract DAO is DAOInterface, Token, TokenCreation { if (proposals.length == 1) // initial length is 1 (see constructor) lastTimeMinQuorumMet = now; - _proposalID = proposals.length++; - Proposal storage p = proposals[_proposalID]; + Proposal storage p = proposals.push(); + _proposalID = proposals.length - 1; p.recipient = _recipient; p.amount = _amount; p.description = _description; @@ -458,7 +458,7 @@ contract DAO is DAOInterface, Token, TokenCreation { //p.proposalPassed = False; // that's default p.newCurator = _newCurator; if (_newCurator) - p.splitData.length++; + p.splitData.push(); p.creator = msg.sender; p.proposalDeposit = msg.value; diff --git a/test/externalTests/solc-js/DAO/Token.sol b/test/externalTests/solc-js/DAO/Token.sol index ee38f29d7..77287b9b4 100644 --- a/test/externalTests/solc-js/DAO/Token.sol +++ b/test/externalTests/solc-js/DAO/Token.sol @@ -34,7 +34,7 @@ contract TokenInterface { mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; - /// Public variables of the token, all used for display + /// Public variables of the token, all used for display string public name; string public symbol; uint8 public decimals; @@ -85,7 +85,7 @@ contract TokenInterface { ); } -contract tokenRecipient { +contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes memory _extraData) public; } @@ -134,8 +134,8 @@ contract Token is TokenInterface { emit Approval(msg.sender, _spender, _amount); return true; } - - /// Allow another contract to spend some tokens in your behalf + + /// Allow another contract to spend some tokens in your behalf function approveAndCall(address _spender, uint256 _value, bytes memory _extraData) public returns (bool success) { allowed[msg.sender][_spender] = _value;