refactor multiple if else into a single condition

pull/3094/head
Iuri Matias 6 years ago committed by yann300
parent a125965edd
commit ef6a401b56
  1. 10
      src/app/tabs/run-tab.js

@ -32,14 +32,8 @@ function runTab (opts, localRegistry) {
var index = select.selectedIndex var index = select.selectedIndex
var selectedUnit = select.querySelectorAll('option')[index].dataset.unit var selectedUnit = select.querySelectorAll('option')[index].dataset.unit
var unit = 'ether' // default var unit = 'ether' // default
if (selectedUnit === 'ether') { if (['ether', 'finney', 'gwei', 'wei'].indexOf(selectedUnit) >= 0) {
unit = 'ether' unit = selectedUnit
} else if (selectedUnit === 'finney') {
unit = 'finney'
} else if (selectedUnit === 'gwei') {
unit = 'gwei'
} else if (selectedUnit === 'wei') {
unit = 'wei'
} }
cb(null, executionContext.web3().toWei(number, unit)) cb(null, executionContext.web3().toWei(number, unit))
} catch (e) { } catch (e) {

Loading…
Cancel
Save