Tiny indentation fix in MintedCrowdsale (#792)

Tiny indentation fix in MintedCrowdsale
This commit is contained in:
Tal Ater
2018-03-06 03:46:00 +02:00
committed by Matt Condon
parent 9fd61177c3
commit 903751ce0d

View File

@ -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));
}