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

Commit

Permalink
don't pass gas & gasPrice to estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr committed Oct 12, 2016
1 parent d9d3d05 commit 452f9ef
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions js/src/modals/Transfer/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,12 +468,10 @@ export default class Transfer extends Component {
_estimateGasEth () {
const { api } = this.context;
const { account } = this.props;
const { data, gas, gasPrice, recipient, value } = this.state;
const { data, recipient, value } = this.state;
const options = {
from: account.address,
to: recipient,
gas,
gasPrice,
value: api.util.toWei(value || 0)
};

Expand Down

0 comments on commit 452f9ef

Please sign in to comment.