diff --git a/src/consensus.cpp b/src/consensus.cpp index d8b0f0cb..3c22bd6e 100644 --- a/src/consensus.cpp +++ b/src/consensus.cpp @@ -524,7 +524,7 @@ namespace consensus { // Vote for times. // Everyone votes on an arbitrary time, as long as it's not in the future and within the round time. - if (ctx.time_now > cp.time && (ctx.time_now - cp.time) < conf::cfg.roundtime) + if (ctx.time_now > cp.time && (ctx.time_now - cp.time) <= conf::cfg.roundtime) increment(votes.time, cp.time); // Vote for user pubkeys.