mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 13:47:19 +00:00
core: fix bug in (bc *Blockchain).isHardforkEnabled
This code was never invoked since we had no native contract enabled starting from some hardfork, Notary is the first one. And luckily, we have plenty of tests that fail due to this bug. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
cc960d5a95
commit
b2ac71e578
1 changed files with 1 additions and 1 deletions
|
@ -1070,7 +1070,7 @@ func (bc *Blockchain) isHardforkEnabled(hf *config.Hardfork, blockHeight uint32)
|
||||||
hfs := bc.config.Hardforks
|
hfs := bc.config.Hardforks
|
||||||
if hf != nil {
|
if hf != nil {
|
||||||
start, ok := hfs[hf.String()]
|
start, ok := hfs[hf.String()]
|
||||||
if !ok || start < blockHeight {
|
if !ok || start > blockHeight {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue