From c421805141b868c9fdcbf15d7c309221592969db Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 29 Jun 2020 20:23:23 +0300 Subject: [PATCH] core: fixed typo in method description --- pkg/core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/blockchain.go b/pkg/core/blockchain.go index 9a8c6942b..d9cc75234 100644 --- a/pkg/core/blockchain.go +++ b/pkg/core/blockchain.go @@ -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)