Skip to content

Commit

Permalink
release 5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DZariusz committed Feb 9, 2024
1 parent 13a055b commit 955e928
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

## [5.9.0] - 2024-02-09
### Added
- contract scanner service
- on-chain tx scanner

### Fixed
- in `testBalanceThreshold` support case where `balance` is null/undefined (solana case)
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": "sanctuary",
"version": "5.9.0-beta.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/umbrella-network/sanctuary.git"
Expand Down
2 changes: 1 addition & 1 deletion src/workers/MetricsWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MetricsWorker extends BasicWorker {
@inject(KeysUpdateService) private keysUpdateService!: KeysUpdateService;

apply = async (job: Bull.Job): Promise<void> => {
this.logger.info(`[MetricsWorker] apply for ${job.id}`);
this.logger.debug(`[MetricsWorker] apply for ${job.id}`);

try {
await this.keysUpdateService.apply();
Expand Down

0 comments on commit 955e928

Please sign in to comment.