This commit is contained in:
Steve Klebanoff
2018-10-19 16:11:01 -07:00
parent ac2d93ab22
commit 51779fec38
3 changed files with 0 additions and 4 deletions

View File

@@ -46,7 +46,6 @@ export class BuyButton extends React.Component<BuyButtonProps> {
await web3Wrapper.awaitTransactionSuccessAsync(txnHash);
this.props.onBuySuccess(this.props.buyQuote, txnHash);
} catch (e) {
console.log('error', e);
this.props.onBuyFailure(this.props.buyQuote, txnHash);
}
};

View File

@@ -1,8 +1,6 @@
import { AssetBuyer, BuyQuote } from '@0x/asset-buyer';
import * as _ from 'lodash';
import * as React from 'react';
import { connect } from 'react-redux';
import { Dispatch } from 'redux';
import { State } from '../redux/reducer';
import { AsyncProcessState } from '../types';

View File

@@ -6,7 +6,6 @@ import { Dispatch } from 'redux';
import { Action, actions } from '../redux/actions';
import { RetryButton } from '../components/retry_button';
import { State } from '../redux/reducer';
export interface SelectedAssetRetryButtonProps {}