@riocrypto/common-server 1.0.506 → 1.0.508
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.
|
@@ -15,7 +15,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15
15
|
exports.ccxtWrapper = void 0;
|
|
16
16
|
const ccxt_1 = __importDefault(require("ccxt"));
|
|
17
17
|
const ccxt_liquidity_provider_1 = require("../types/ccxt-liquidity-provider");
|
|
18
|
-
const rio_env_1 = require("../types/rio-env");
|
|
19
18
|
const side_1 = require("../types/side");
|
|
20
19
|
class CCXTClient {
|
|
21
20
|
constructor(env) {
|
|
@@ -196,6 +195,4 @@ class CCXTClient {
|
|
|
196
195
|
});
|
|
197
196
|
}
|
|
198
197
|
}
|
|
199
|
-
exports.ccxtWrapper = new CCXTClient(
|
|
200
|
-
? "production"
|
|
201
|
-
: "development");
|
|
198
|
+
exports.ccxtWrapper = new CCXTClient(process.env.TEST_ENV === "true" ? "development" : "production");
|
package/package.json
CHANGED