remove unused actions

This commit is contained in:
Daniel Ternyak 2017-06-19 00:39:57 -05:00
parent 67a5eee0a9
commit 6f638c66da
1 changed files with 3 additions and 18 deletions

View File

@ -6,7 +6,6 @@ import {
SWAP_DESTINATION_AMOUNT_TO,
SWAP_DESTINATION_KIND_TO,
SWAP_ORIGIN_AMOUNT_TO,
SWAP_ORIGIN_KIND_AND_DESTINATION_KIND_AND_DESTINATION_OPTIONS_TO,
SWAP_ORIGIN_KIND_TO,
SWAP_UPDATE_BITY_RATES_TO
} from 'actions/swap';
@ -32,8 +31,7 @@ class Swap extends Component {
swapDestinationKindTo: PropTypes.func,
swapOriginAmountTo: PropTypes.func,
swapDestinationAmountTo: PropTypes.func,
swapUpdateBityRatesTo: PropTypes.func,
swapOriginKindAndDestinationKindAndDestinationOptionsTo: PropTypes.func
swapUpdateBityRatesTo: PropTypes.func
};
componentDidMount() {
@ -63,8 +61,7 @@ class Swap extends Component {
swapOriginKindTo,
swapDestinationKindTo,
swapOriginAmountTo,
swapDestinationAmountTo,
swapOriginKindAndDestinationKindAndDestinationOptionsTo
swapDestinationAmountTo
} = this.props;
let wantToSwapMyProps = {
@ -78,8 +75,7 @@ class Swap extends Component {
swapOriginKindTo,
swapDestinationKindTo,
swapOriginAmountTo,
swapDestinationAmountTo,
swapOriginKindAndDestinationKindAndDestinationOptionsTo
swapDestinationAmountTo
};
return (
@ -123,17 +119,6 @@ function mapDispatchToProps(dispatch) {
},
swapUpdateBityRatesTo: bityRates => {
dispatch(SWAP_UPDATE_BITY_RATES_TO(bityRates));
},
swapOriginKindAndDestinationKindAndDestinationOptionsTo: (
originKind,
destinationKind
) => {
dispatch(
SWAP_ORIGIN_KIND_AND_DESTINATION_KIND_AND_DESTINATION_OPTIONS_TO(
originKind,
destinationKind
)
);
}
};
}