Skip to content

Commit

Permalink
fix(ETH/XLM): remove payment failure from initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Mar 11, 2019
1 parent 4827781 commit 8ad1c35
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -45,7 +45,6 @@ export default ({ coreSagas, networks }) => {
yield put(initialize(FORM, initialValues))
yield put(A.sendEthPaymentUpdatedSuccess(payment.value()))
} catch (e) {
yield put(A.sendEthPaymentUpdatedFailure(e))
yield put(
actions.logs.logErrorMessage(logLocation, 'sendEthInitialized', e)
)
Expand Down
Expand Up @@ -51,7 +51,6 @@ export default ({ coreSagas }) => {
yield put(touch(FORM, 'memo', 'memoType'))
yield put(A.paymentUpdatedSuccess(payment.value()))
} catch (e) {
yield put(A.paymentUpdatedFailure(e))
yield put(actions.logs.logErrorMessage(logLocation, 'initialized', e))
}
}
Expand Down

0 comments on commit 8ad1c35

Please sign in to comment.