diff options
Read only connection of gas price chart to redux
Diffstat (limited to 'ui/app/components/send/send.component.js')
-rw-r--r-- | ui/app/components/send/send.component.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/app/components/send/send.component.js b/ui/app/components/send/send.component.js index 5c12826ea..301acb1db 100644 --- a/ui/app/components/send/send.component.js +++ b/ui/app/components/send/send.component.js @@ -163,9 +163,10 @@ export default class SendTransactionScreen extends PersistentForm { } componentDidMount () { - this.props.fetchGasEstimates() - .then(() => { + this.props.fetchBasicGasEstimates() + .then(basicEstimates => { this.updateGas() + this.props.fetchGasEstimates(basicEstimates.blockTime) }) } |