Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 9a6dea1

Browse files
authored
Merge pull request #345 from MortalKastor/fix-build
Fix build error from uglifyjs
2 parents 9262a59 + ea699bd commit 9a6dea1

File tree

1 file changed

+2
-2
lines changed
  • src/internals/devices/getAddressForCurrency

1 file changed

+2
-2
lines changed

src/internals/devices/getAddressForCurrency/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ const all = {
2323
ethereum_testnet: btc,
2424
}
2525

26-
const module: Module = (currencyId: string) => all[currencyId] || fallback(currencyId)
26+
const getAddressForCurrency: Module = (currencyId: string) => all[currencyId] || fallback(currencyId)
2727

28-
export default module
28+
export default getAddressForCurrency

0 commit comments

Comments
 (0)