fix condition

This commit is contained in:
Patrick Nagurny 2017-01-30 16:08:19 -05:00
parent cd4cbe3fb7
commit d4302091ee

View File

@ -256,7 +256,7 @@ ProcessSerial.prototype._write = function(block, enc, callback) {
});
function check() {
return self.db.concurrentTip.__height < block.__height;
return self.db.concurrentTip.__height >= block.__height;
}
};