Skip to content

Commit

Permalink
Add websocket heartbeat for ethereum relay (#1303)
Browse files Browse the repository at this point in the history
  • Loading branch information
vgeddes authored Oct 8, 2024
1 parent 3c57f04 commit 84ce698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/relays/execution/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (r *Relay) Start(ctx context.Context, eg *errgroup.Group) error {
paraconn := parachain.NewConnection(r.config.Sink.Parachain.Endpoint, r.keypair.AsKeyringPair())
ethconn := ethereum.NewConnection(&r.config.Source.Ethereum, nil)

err := paraconn.Connect(ctx)
err := paraconn.ConnectWithHeartBeat(ctx, 20*time.Second)
if err != nil {
return err
}
Expand Down

0 comments on commit 84ce698

Please sign in to comment.