From ea699bd996d440c228e2dc84c5b79b639488df56 Mon Sep 17 00:00:00 2001 From: Thibaut Boustany Date: Mon, 21 May 2018 11:53:18 +0200 Subject: [PATCH] Fix build error from uglifyjs --- src/internals/devices/getAddressForCurrency/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internals/devices/getAddressForCurrency/index.js b/src/internals/devices/getAddressForCurrency/index.js index c23f31a4..08d8573c 100644 --- a/src/internals/devices/getAddressForCurrency/index.js +++ b/src/internals/devices/getAddressForCurrency/index.js @@ -23,6 +23,6 @@ const all = { ethereum_testnet: btc, } -const module: Module = (currencyId: string) => all[currencyId] || fallback(currencyId) +const getAddressForCurrency: Module = (currencyId: string) => all[currencyId] || fallback(currencyId) -export default module +export default getAddressForCurrency