diff --git a/CHANGELOG.md b/CHANGELOG.md index aa4032e..80a5d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/btcstaking-tracker/stakingeventwatcher/stakingeventwatcher.go b/btcstaking-tracker/stakingeventwatcher/stakingeventwatcher.go index 7565783..39a0096 100644 --- a/btcstaking-tracker/stakingeventwatcher/stakingeventwatcher.go +++ b/btcstaking-tracker/stakingeventwatcher/stakingeventwatcher.go @@ -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 {