Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Fix watchPayments stopper (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits authored Aug 5, 2020
1 parent 7e71232 commit 0425424
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- [KeyManager] Added Trezor wallet.
- [KeyManager] Only sign SEP-10 auth transactions with seq number 0.
- [DataProvider] Fix `watchPayments` stopper.

## [v0.1.0-rc.1](https://github.com/stellar/js-stellar-wallets/compare/v0.0.9-rc.1...v0.1.0-rc.1)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/wallet-sdk",
"version": "0.1.0-rc.8",
"version": "0.1.0-rc.9",
"description": "Libraries to help you write Stellar-enabled wallets in Javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/data/DataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ export class DataProvider {
clearTimeout(this._watcherTimeouts.watchPayments);
}

delete this.callbacks.accountDetails;
delete this.errorHandlers.accountDetails;
delete this.callbacks.payments;
delete this.errorHandlers.payments;
};
}

Expand Down

0 comments on commit 0425424

Please sign in to comment.