diff --git a/bridge/cmd/guardiand/main.go b/bridge/cmd/guardiand/main.go index 9e7757a73..c18a1e313 100644 --- a/bridge/cmd/guardiand/main.go +++ b/bridge/cmd/guardiand/main.go @@ -206,7 +206,6 @@ func main() { } logger.Info("Started internal services") - supervisor.Signal(ctx, supervisor.SignalHealthy) select { case <-ctx.Done(): diff --git a/bridge/cmd/guardiand/p2p.go b/bridge/cmd/guardiand/p2p.go index 5926dce59..c5f8c7d1d 100644 --- a/bridge/cmd/guardiand/p2p.go +++ b/bridge/cmd/guardiand/p2p.go @@ -206,8 +206,6 @@ func p2p(obsvC chan *gossipv1.LockupObservation, sendC chan []byte) func(ctx con } }() - supervisor.Signal(ctx, supervisor.SignalHealthy) - for { envl, err := sub.Next(ctx) if err != nil { diff --git a/bridge/pkg/ethereum/watcher.go b/bridge/pkg/ethereum/watcher.go index 66ff3e7e2..7f74e9b02 100644 --- a/bridge/pkg/ethereum/watcher.go +++ b/bridge/pkg/ethereum/watcher.go @@ -209,8 +209,6 @@ func (e *EthBridgeWatcher) Run(ctx context.Context) error { } }() - supervisor.Signal(ctx, supervisor.SignalHealthy) - select { case <-ctx.Done(): return ctx.Err() diff --git a/bridge/pkg/processor/processor.go b/bridge/pkg/processor/processor.go index ac219de93..90fffeaec 100644 --- a/bridge/pkg/processor/processor.go +++ b/bridge/pkg/processor/processor.go @@ -100,8 +100,6 @@ func NewProcessor( func (p *Processor) Run(ctx context.Context) error { ourAddr := crypto.PubkeyToAddress(p.gk.PublicKey) - supervisor.Signal(ctx, supervisor.SignalHealthy) - for { select { case <-ctx.Done(): diff --git a/bridge/pkg/solana/watcher.go b/bridge/pkg/solana/watcher.go index ed78bd677..ec07dddcc 100644 --- a/bridge/pkg/solana/watcher.go +++ b/bridge/pkg/solana/watcher.go @@ -138,7 +138,7 @@ func (e *SolanaBridgeWatcher) Run(ctx context.Context) error { case codes.Internal: // This VAA has already been executed on chain, successfully or not. // TODO: dissect InstructionError in agent and convert this to the proper gRPC code - if strings.Contains(st.Message(), "custom program error: 0xb") { // AlreadyExists + if strings.Contains(st.Message(), "custom program error: 0xb") { // AlreadyExists logger.Info("VAA already submitted on-chain, ignoring", zap.Error(err), zap.String("digest", h)) break } @@ -157,8 +157,6 @@ func (e *SolanaBridgeWatcher) Run(ctx context.Context) error { } }() - supervisor.Signal(ctx, supervisor.SignalHealthy) - select { case <-ctx.Done(): return ctx.Err()