Update mintedTotally method name on block reward contract

This commit is contained in:
Gerardo Nardelli 2018-09-25 15:50:58 -03:00
parent 89bd60c469
commit 750d2e2b9f
2 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@ pragma solidity 0.4.24;
interface IBlockReward {
function addExtraReceiver(uint256 _amount, address _receiver) external;
function totalMintedCoins() public view returns (uint256);
function mintedTotally() public view returns (uint256);
}

View File

@ -19,7 +19,7 @@ contract BlockReward is IBlockReward {
_receiver.transfer(_amount);
}
function totalMintedCoins() public view returns (uint256) {
function mintedTotally() public view returns (uint256) {
return mintedCoins;
}
}