File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/containers/Tokens/TransparentTransferDialog Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class TransparentTransferDialog extends React.Component {
78
78
txs . token = this . props . feeOption ?. fees ?. token ;
79
79
const tokenGasPrice = this . props . gasPrice . find ( ( val ) => val . token === this . props . feeOption ?. fees ?. token ) ;
80
80
txs . feeAmount = new BigNumber ( tokenGasPrice ?. minDenomAmount ) ;
81
- if ( props . feeOption ?. fees ?. token === config . TOKEN_ADDRESS ) {
81
+ if ( this . props . feeOption ?. fees ?. token === config . TOKEN_ADDRESS ) {
82
82
txs . feeAmount = new BigNumber ( 0.000001 ) ;
83
83
}
84
84
}
@@ -302,4 +302,4 @@ const actionToProps = {
302
302
showTokensTransactionSuccessDialog,
303
303
} ;
304
304
305
- export default withRouter ( connect ( stateToProps , actionToProps ) ( TransparentTransferDialog ) ) ;
305
+ export default withRouter ( connect ( stateToProps , actionToProps ) ( TransparentTransferDialog ) ) ;
You can’t perform that action at this time.
0 commit comments