diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-08-16 20:28:27 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-12-04 11:36:04 +0800 |
commit | 0a7dfcd55d02a7204d8f0773ff9d91f325aabea8 (patch) | |
tree | a4c7d3e219ca926f17f26d020fddc78854a23b53 /ui/app/components/send/send.component.js | |
parent | 112d18e316df312a648b8c8ac17c201314fc9ed6 (diff) | |
download | dexon-wallet-0a7dfcd55d02a7204d8f0773ff9d91f325aabea8.tar.gz dexon-wallet-0a7dfcd55d02a7204d8f0773ff9d91f325aabea8.tar.zst dexon-wallet-0a7dfcd55d02a7204d8f0773ff9d91f325aabea8.zip |
Connect the gas-button-group component to redux and a live api.
Diffstat (limited to 'ui/app/components/send/send.component.js')
-rw-r--r-- | ui/app/components/send/send.component.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/app/components/send/send.component.js b/ui/app/components/send/send.component.js index a27401f3..a639c24b 100644 --- a/ui/app/components/send/send.component.js +++ b/ui/app/components/send/send.component.js @@ -162,6 +162,10 @@ export default class SendTransactionScreen extends PersistentForm { } } + componentDidMount () { + this.props.fetchGasEstimates() + } + componentWillMount () { const { from: { address }, |