diff options
Read only connection of gas price chart to redux
Diffstat (limited to 'ui/app/components/send/send.container.js')
-rw-r--r-- | ui/app/components/send/send.container.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/send/send.container.js b/ui/app/components/send/send.container.js index f240774d4..ac804cf2a 100644 --- a/ui/app/components/send/send.container.js +++ b/ui/app/components/send/send.container.js @@ -37,6 +37,7 @@ import { updateSendErrors, } from '../../ducks/send.duck' import { + fetchBasicGasEstimates, fetchGasEstimates, } from '../../ducks/gas.duck' import { @@ -107,6 +108,7 @@ function mapDispatchToProps (dispatch) { scanQrCode: () => dispatch(showQrScanner(SEND_ROUTE)), qrCodeDetected: (data) => dispatch(qrCodeDetected(data)), updateSendTo: (to, nickname) => dispatch(updateSendTo(to, nickname)), - fetchGasEstimates: () => dispatch(fetchGasEstimates()), + fetchBasicGasEstimates: () => dispatch(fetchBasicGasEstimates()), + fetchGasEstimates: (blockTime) => dispatch(fetchGasEstimates(blockTime)), } } |