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