Skip to content
This repository has been archived by the owner on Dec 19, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
vbloher committed Dec 6, 2018
2 parents 3c0f2bb + cd20bfe commit 91dd230
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/containers/Application/ConfirmationPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,19 @@ class ConfirmationPopupContainer extends Component {
gasPriceChange = (e) => {
const { value } = e.target;

// if ((!Number.isNaN(value) && +value >= 1) || value === '') {
// this.setState({
// gasPrice: value,
// });
// } else {
// this.setState({
// gasPrice: 1,
// });
// }

this.setState({
if ((!Number.isNaN(value) && +value >= 1) || value === '') {
this.setState({
gasPrice: value,
});
} else {
this.setState({
gasPrice: 1,
});
}

// this.setState({
// gasPrice: value,
// });
};

gasLimitChange = (e) => {
Expand Down

0 comments on commit 91dd230

Please sign in to comment.