Fix off by one error in frontier req server (#1992)

This commit is contained in:
Orhan Hirsch 2019-05-16 23:58:19 +02:00 committed by cryptocode
commit d685b343ef

View file

@ -3018,7 +3018,7 @@ count (0)
void nano::frontier_req_server::send_next ()
{
if (!current.is_zero () && count <= request->count)
if (!current.is_zero () && count < request->count)
{
{
send_buffer->clear ();