Merge pull request #123 from LucasJones/patch-1

Fix typo in paymentProcessor.js
This commit is contained in:
Matthew Little 2014-05-03 13:11:48 -06:00
commit 95be025782

View File

@ -372,7 +372,7 @@ function SetupForPool(logger, poolOptions, setupFinished){
trySend(higherPercent); trySend(higherPercent);
} }
else if (result.error) { else if (result.error) {
logger.error(logSystem, logComponent, 'Error trying to send payments wtih RCP sendmany ' logger.error(logSystem, logComponent, 'Error trying to send payments with RPC sendmany '
+ JSON.stringify(result.error)); + JSON.stringify(result.error));
callback(true); callback(true);
} }
@ -500,4 +500,4 @@ function SetupForPool(logger, poolOptions, setupFinished){
}; };
} }