mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
fix non-super block check
This commit is contained in:
parent
0387ebe244
commit
28fe729708
@ -200,9 +200,9 @@ bool IsBlockValueValid(const CBlock& block, int64_t nExpectedValue){
|
||||
LogPrintf("IsBlockValueValid() : WARNING: Couldn't find previous block");
|
||||
}
|
||||
|
||||
//are these blocks even enabled?
|
||||
//are these blocks even enabled
|
||||
if(!IsSporkActive(SPORK_13_ENABLE_SUPERBLOCKS)){
|
||||
return block.vtx[0].GetValueOut() > nExpectedValue;
|
||||
return block.vtx[0].GetValueOut() <= nExpectedValue;
|
||||
}
|
||||
|
||||
if(!masternodeSync.IsSynced()) { //there is no budget data to use to check anything
|
||||
|
Loading…
Reference in New Issue
Block a user