Update paymentProcessor.js

Oops ...  off by one ...
This commit is contained in:
hellcatz 2017-08-03 14:43:31 -07:00 committed by GitHub
parent f2786e7a5b
commit f6fe32b7e5
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ function SetupForPool(logger, poolOptions, setupFinished){
return true;
case 'generate':
payingBlocks++;
return (payingBlocks < maxBlocksPerPayment);
return (payingBlocks <= maxBlocksPerPayment);
default:
return false;