More informative error when failing to parse satoshis in coin for payment processing

This commit is contained in:
Matt 2014-05-04 15:29:59 -06:00
parent 4eec31c350
commit 964335340b

View File

@ -90,7 +90,7 @@ function SetupForPool(logger, poolOptions, setupFinished){
callback(); callback();
} }
catch(e){ catch(e){
logger.error(logSystem, logComponent, 'Error detecting number of satoshis in a coin, cannot do payment processing'); logger.error(logSystem, logComponent, 'Error detecting number of satoshis in a coin, cannot do payment processing. Tried parsing: ' + result.data);
callback(true); callback(true);
} }