Fix off by one error in frontier req server (#1992)
This commit is contained in:
parent
04e4eda0c3
commit
d685b343ef
1 changed files with 1 additions and 1 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue