Browse Source
Merge pull request #345 from MortalKastor/fix-build
Fix build error from uglifyjs
master
v0.1.0-alpha.2
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 |
|
|
|