We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 738ef51 commit 551f9ebCopy full SHA for 551f9eb
pkg/core/blockchain.go
@@ -2117,6 +2117,9 @@ func (bc *Blockchain) GetNotaryBalance(acc util.Uint160) *big.Int {
2117
// per key which is a reward per notary request key for designated notary nodes.
2118
// Default value is returned if Notary contract is not yet active.
2119
func (bc *Blockchain) GetNotaryServiceFeePerKey() int64 {
2120
+ if !bc.isHardforkEnabled(&transaction.NotaryAssistedActivation, bc.BlockHeight()) {
2121
+ return 0
2122
+ }
2123
return bc.contracts.Policy.GetAttributeFeeInternal(bc.dao, transaction.NotaryAssistedT)
2124
}
2125
0 commit comments