@unielon/coin-dogecoin
Advanced tools
Comparing version 1.1.7 to 1.1.8
@@ -98,9 +98,12 @@ "use strict"; | ||
if (tick0 === "WDOGE(WRAPPED-DOGE)" || (tick0_id === "WDOGE(WRAPPED-DOGE)" && doge === 1)) { | ||
processWDOGE(amt0); | ||
const amount = amt0 || 0; | ||
processWDOGE(amount); | ||
} | ||
if (tick === "WDOGE(WRAPPED-DOGE)" && doge === 1) { | ||
processWDOGE(amt); | ||
const amount = amt || 0; | ||
processWDOGE(amount); | ||
} | ||
if (tick1 === "WDOGE(WRAPPED-DOGE)" && op !== 'swap' && op !== 'trade') { | ||
processWDOGE(amt1); | ||
const amount = amt1 || 0; | ||
processWDOGE(amount); | ||
} | ||
@@ -107,0 +110,0 @@ } |
{ | ||
"name": "@unielon/coin-dogecoin", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
Sorry, the diff of this file is not supported yet
949334
13101