Skip to content

Commit d0b79a5

Browse files
committed
Stop bond reduction task after Saturn
1 parent d2e637d commit d0b79a5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

rocketpool/watchtower/cancel-bond-reductions.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ func newCancelBondReductions(c *cli.Context, logger log.ColorLogger, errorLogger
8484
// Start the bond reduction cancellation thread
8585
func (t *cancelBondReductions) run(state *state.NetworkState) error {
8686

87+
if state.IsSaturnDeployed {
88+
return nil
89+
}
90+
8791
// Wait for eth clients to sync
8892
if err := services.WaitEthClientSynced(t.c, true); err != nil {
8993
return err

0 commit comments

Comments
 (0)