Skip to content

Commit

Permalink
fix(Coinify Sell): fix sagas file
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Welber committed May 24, 2018
1 parent a164964 commit 19c854f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { put, call, select } from 'redux-saga/effects'
import { any, merge, path, prop, equals } from 'ramda'
import { any, merge, path, prop, equals, head } from 'ramda'
import { delay } from 'redux-saga'
import * as A from './actions'
import * as actions from '../../actions'
import * as selectors from '../../selectors.js'
import { merge, path, prop, equals, head } from 'ramda'
import * as service from 'services/CoinifyService'
import * as sendBtcActions from '../../components/sendBtc/actions'
import * as sendBtcSelectors from '../../components/sendBtc/selectors'
Expand Down Expand Up @@ -260,6 +259,8 @@ export default ({ coreSagas }) => {
yield put(actions.core.data.coinify.getMediumsWithBankAccounts(quote.data))
} catch (e) {
yield put(actions.logs.logErrorMessage(logLocation, 'deleteBankAccount', e))
}
}

const finishTrade = function * (data) {
const tradeToFinish = data.payload
Expand Down Expand Up @@ -313,7 +314,7 @@ export default ({ coreSagas }) => {
initialized,
openKYC,
sell,
triggerKYC
triggerKYC,
setMinMax,
cancelISX,
finishTrade,
Expand Down

0 comments on commit 19c854f

Please sign in to comment.