Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #2666 from ethcore/jg-fix-signer-reject
Browse files Browse the repository at this point in the history
fix signer rejections
  • Loading branch information
jacogr authored Oct 17, 2016
2 parents 1b8c2b3 + dd5c4d1 commit 948763d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/redux/providers/signerMiddleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ export default class SignerMiddleware {
});
}

onRejectStart = (store, next, action) => {
onRejectStart = (store, action) => {
const id = action.payload;

this._api.personal
.personal_rejectRequest(id)
.rejectRequest(id)
.then(() => {
store.dispatch(actions.successRejectRequest({ id }));
})
Expand Down

0 comments on commit 948763d

Please sign in to comment.