Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar955 committed Oct 18, 2024
1 parent 7063203 commit 789922a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## Unreleased

### Bug Fixes

* [#84](https://github.com/babylonlabs-io/vigilante/pull/84) fix spawning more go routines than needed when activating
delegations, add more logging


## v0.13.0

### Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ func (sew *StakingEventWatcher) activateBtcDelegation(
defer cancel()

if err := sew.pendingTracker.UpdateActivation(stakingTxHash, true); err != nil {
sew.logger.Debugf("skipping tx %s is not in pending tracker", stakingTxHash)
sew.logger.Debugf("skipping tx %s is not in pending tracker, err: %v", stakingTxHash, err)
}

_ = retry.Do(func() error {
Expand Down

0 comments on commit 789922a

Please sign in to comment.