aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send/send.component.js')
-rw-r--r--ui/app/components/send/send.component.js5
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)
})
}