From a2bbf504b891a63f32070961118ec1ae6fa5fdd8 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Tue, 9 Oct 2018 14:05:54 -0230 Subject: Read only connection of gas price chart to redux --- ui/app/components/send/send.component.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ui/app/components/send/send.component.js') 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) }) } -- cgit v1.2.3