Commit 903751ce by Tal Ater Committed by Matt Condon

Tiny indentation fix in MintedCrowdsale (#792)

Tiny indentation fix in MintedCrowdsale
parent 9fd61177
......@@ -12,10 +12,10 @@ import "../../token/ERC20/MintableToken.sol";
contract MintedCrowdsale is Crowdsale {
/**
* @dev Overrides delivery by minting tokens upon purchase.
* @param _beneficiary Token purchaser
* @param _tokenAmount Number of tokens to be minted
*/
* @dev Overrides delivery by minting tokens upon purchase.
* @param _beneficiary Token purchaser
* @param _tokenAmount Number of tokens to be minted
*/
function _deliverTokens(address _beneficiary, uint256 _tokenAmount) internal {
require(MintableToken(token).mint(_beneficiary, _tokenAmount));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment