Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## Unreleased
- TBD

## [9.2.3]
- [Fix log level in transaction watcher.](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/160)

## [9.2.2]
- [Wallet Provider: add "options" on tx sign return value](https://github.com/ElrondNetwork/elrond-sdk-erdjs/pull/157)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elrondnetwork/erdjs",
"version": "9.2.2",
"version": "9.2.3",
"description": "Smart Contracts interaction framework",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
2 changes: 1 addition & 1 deletion src/transactionWatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class TransactionWatcher {
break;
}
} catch (error) {
Logger.info("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());
Logger.debug("TransactionWatcher.awaitConditionally(): cannot (yet) fetch data.", this.hash.toString());

if (!(error instanceof errors.Err)) {
throw error;
Expand Down