From ff43930847fc76dae0264459cf36fbef9463e7c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Thu, 9 Sep 2021 14:40:53 +0100 Subject: [PATCH] fix: organize imports --- bin/lamassu-update-wallet-nodes | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/lamassu-update-wallet-nodes b/bin/lamassu-update-wallet-nodes index 8b772a25..701bf411 100644 --- a/bin/lamassu-update-wallet-nodes +++ b/bin/lamassu-update-wallet-nodes @@ -1,10 +1,10 @@ #!/usr/bin/env node const _ = require('lodash/fp') - -const { utils: coinUtils } = require('lamassu-coins') -const cryptos = coinUtils.cryptoCurrencies() const common = require('../lib/blockchain/common') +const { utils: coinUtils } = require('lamassu-coins') + +const cryptos = coinUtils.cryptoCurrencies() const PLUGINS = { BTC: require('../lib/blockchain/bitcoin.js'),