File tree Expand file tree Collapse file tree
src/containers/Tokens/TransparentTransferDialog Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class TransparentTransferDialog extends React.Component {
7878 txs . token = this . props . feeOption ?. fees ?. token ;
7979 const tokenGasPrice = this . props . gasPrice . find ( ( val ) => val . token === this . props . feeOption ?. fees ?. token ) ;
8080 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 ) {
8282 txs . feeAmount = new BigNumber ( 0.000001 ) ;
8383 }
8484 }
@@ -302,4 +302,4 @@ const actionToProps = {
302302 showTokensTransactionSuccessDialog,
303303} ;
304304
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