buy-eth-url - fix variable name

feature/default_network_editable
kumavis 6 years ago
parent 38b85adbe0
commit 2c3fc18573
  1. 4
      app/scripts/lib/buy-eth-url.js

@ -32,7 +32,7 @@ function getBuyEthUrl({ network, amount, address, service }) {
throw new Error(`Unknown cryptocurrency exchange or faucet: "${service}"`)
}
function getDefaultServiceForNetwork (networkId) {
function getDefaultServiceForNetwork (network) {
switch (network) {
case '1':
return 'wyre'
@ -43,5 +43,5 @@ function getDefaultServiceForNetwork (networkId) {
case '42':
return 'kovan-faucet'
}
throw new Error(`No default cryptocurrency exchange or faucet for networkId: "${networkId}"`)
throw new Error(`No default cryptocurrency exchange or faucet for networkId: "${network}"`)
}

Loading…
Cancel
Save