Skip to content

Commit

Permalink
Merge pull request #176 from lidofinance/develop
Browse files Browse the repository at this point in the history
dev to main
  • Loading branch information
infloop committed Jan 22, 2024
2 parents fb8de22 + 8f60b9c commit fd04f3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lido-council-daemon",
"version": "2.0.0",
"version": "2.0.1",
"description": "Lido Council Daemon",
"author": "Lido team",
"private": true,
Expand Down
1 change: 1 addition & 0 deletions src/guardian/block-guard/block-guard.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export class BlockGuardService {
};
} catch (error) {
this.blockErrorsCounter.inc();
this.logger.error(error);
throw error;
} finally {
endTimer();
Expand Down
3 changes: 2 additions & 1 deletion src/guardian/guardian.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ export class GuardianService implements OnModuleInit {
blockNumber,
});
} catch (error) {
this.logger.error('Staking router state update error', error);
this.logger.error('Staking router state update error');
this.logger.error(error);
} finally {
this.logger.log('New staking router state cycle end');
}
Expand Down

0 comments on commit fd04f3c

Please sign in to comment.