core: fixed typo in method description

This commit is contained in:
Anna Shaleva 2020-06-29 20:23:23 +03:00
parent 0aaaf7f787
commit c421805141

View file

@ -1061,7 +1061,7 @@ func (bc *Blockchain) UnsubscribeFromExecutions(ch chan<- *state.AppExecResult)
// CalculateClaimable calculates the amount of GAS generated by owning specified
// amount of NEO between specified blocks. The amount of NEO being passed is in
// its natural non-divisible form (1 NEO as 1, 2 NEO as 2, no multiplication by
// 10⁸ is neeeded as for Fixed8).
// 10⁸ is needed as for Fixed8).
func (bc *Blockchain) CalculateClaimable(value int64, startHeight, endHeight uint32) int64 {
var amount int64
di := uint32(bc.decrementInterval)