From 77fd58ae99dcaa3aeeb5570c7ea6ab169e378cf3 Mon Sep 17 00:00:00 2001 From: Adam R <13562139+catenocrypt@users.noreply.github.com> Date: Sat, 30 Jan 2021 23:58:39 +0100 Subject: [PATCH] Disable for now auto-update of Eth&Bsc trading pairs. (#5441) Co-authored-by: Catenocrypt --- script/blockchain/ethereum.ts | 2 +- script/blockchain/smartchain.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/script/blockchain/ethereum.ts b/script/blockchain/ethereum.ts index e1dc43358..b2b16d126 100644 --- a/script/blockchain/ethereum.ts +++ b/script/blockchain/ethereum.ts @@ -80,6 +80,6 @@ export class EthereumAction implements ActionInterface { getSanityChecks(): CheckStepInterface[] { return []; } async update(): Promise { - await generateTokenlist(); + //await generateTokenlist(); } } diff --git a/script/blockchain/smartchain.ts b/script/blockchain/smartchain.ts index 924c3d554..30d3136ac 100644 --- a/script/blockchain/smartchain.ts +++ b/script/blockchain/smartchain.ts @@ -79,6 +79,6 @@ export class SmartchainAction implements ActionInterface { getSanityChecks(): CheckStepInterface[] { return []; } async update(): Promise { - await generateTokenlist(); + //await generateTokenlist(); } }