Skip to content

Commit

Permalink
mercury transmitter bugfix (#15733)
Browse files Browse the repository at this point in the history
  • Loading branch information
msuchacz-cll authored Dec 17, 2024
1 parent a5b177f commit 8555745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/relay/evm/mercury/transmitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func (s *server) runQueueLoop(stopCh services.StopChan, wg *sync.WaitGroup, feed
}
res, err := func(ctx context.Context) (*pb.TransmitResponse, error) {
ctx, cancel := context.WithTimeout(ctx, utils.WithJitter(s.transmitTimeout))
cancel()
defer cancel()
return s.c.Transmit(ctx, t.Req)
}(ctx)
if ctx.Err() != nil {
Expand Down

0 comments on commit 8555745

Please sign in to comment.