From 90a08986d6f0efe8a81ecb4bcf6c34f980067bc6 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Wed, 8 Apr 2020 13:39:09 +0300 Subject: [PATCH] core: fix typo in function doc-comment --- 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 7064b3ac7..ce95582f3 100644 --- a/pkg/core/blockchain.go +++ b/pkg/core/blockchain.go @@ -446,7 +446,7 @@ func (bc *Blockchain) processHeader(h *block.Header, batch storage.Batch, header return nil } -// bc.GetHeaderHash(int(endHeight)) returns sum of all system fees for blocks up to h. +// getSystemFeeAmount returns sum of all system fees for blocks up to h. // and 0 if no such block exists. func (bc *Blockchain) getSystemFeeAmount(h util.Uint256) uint32 { _, sf, _ := bc.dao.GetBlock(h)