rsibot-utils 1.3.4 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -113,7 +113,7 @@ function initQueueListener() {
113
113
  async function getAbandonedCoins() {
114
114
  try {
115
115
  const abandonedCoins = await ActiveCoin.find({ abandoned: true });
116
- return abandonedCoins;
116
+ return abandonedCoins && [];
117
117
  } catch (error) {
118
118
  write(error.stack,true);
119
119
  return [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsibot-utils",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {