Update mintedTotally method name on block reward contract
This commit is contained in:
parent
89bd60c469
commit
750d2e2b9f
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue