Fix wrongly called timeouts

This commit is contained in:
Nicolas Gotchac
2017-06-14 12:35:36 +02:00
parent 8aa2ed175e
commit 8cb4bc2127
3 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ export default class Signer {
this._updateSubscriptions('signer_requestsToConfirm', null, requests);
nextTimeout();
})
.catch(nextTimeout);
.catch(() => nextTimeout());
}
_postTransaction (data) {