diff --git a/react/src/components/dashboard/sendCoin/sendCoin.js b/react/src/components/dashboard/sendCoin/sendCoin.js index 9895367..3bf6b0a 100644 --- a/react/src/components/dashboard/sendCoin/sendCoin.js +++ b/react/src/components/dashboard/sendCoin/sendCoin.js @@ -684,7 +684,7 @@ class SendCoin extends React.Component { onSliderChangeTime(value) { this.setState({ - btcFeesSize: this.state.btcFees.recommended[_feeLookup[value]], + btcFeesSize: _feeLookup[value] === 'advanced' ? this.state.btcFees.electrum[this.state.btcFeesAdvancedStep] : this.state.btcFees.recommended[_feeLookup[value]], btcFeesTimeBasedStep: value, btcFeesType: _feeLookup[value] === 'advanced' ? 'advanced' : null, }); @@ -749,7 +749,7 @@ class SendCoin extends React.Component { 3: 'advanced' }} /> { this.state.btcFeesType === 'advanced' && -
+
Estimated to be included within the next {this.state.btcFeesAdvancedStep + 1} {(this.state.btcFeesAdvancedStep + 1) > 1 ? 'blocks' : 'block'}