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
parent
commit
9a6dea1ac8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/internals/devices/getAddressForCurrency/index.js

4
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

Loading…
Cancel
Save