fix: the events watcher was being reset by accident

This commit is contained in:
Jonathan Rainville 2019-05-31 11:00:41 -04:00
parent 89e3579ee4
commit 6dad62d7a4
No known key found for this signature in database
GPG Key ID: 5F4630B759727D9C
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ function reducer(state = DEFAULT_STATE, action) {
return {
...state,
escrows: {
...state.watching,
...state.escrows,
[action.escrowId]: true
}
};