don't log orderTooSmall trading errors
This commit is contained in:
parent
d68934cb53
commit
e230edc3f7
1 changed files with 1 additions and 1 deletions
|
|
@ -519,7 +519,7 @@ function executeTrades() {
|
|||
purchase(trade, function(err) {
|
||||
if (err) {
|
||||
tradesQueue.push(trade);
|
||||
logger.error(err);
|
||||
if (err.name !== 'orderTooSmall') logger.error(err);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue