Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
reductionista committed Oct 12, 2023
1 parent 9e54020 commit 227d75a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkg/loop/internal/median.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ func (m *PluginMedianClient) NewMedianFactory(ctx context.Context, provider type
pb.RegisterOffchainConfigDigesterServer(s, &offchainConfigDigesterServer{impl: provider.OffchainConfigDigester()})
pb.RegisterContractConfigTrackerServer(s, &contractConfigTrackerServer{impl: provider.ContractConfigTracker()})
pb.RegisterContractTransmitterServer(s, &contractTransmitterServer{impl: provider.ContractTransmitter()})
pb.RegisterChainReaderServer(s, &chainReaderServer{impl: provider.ChainReader()})

Check failure on line 66 in pkg/loop/internal/median.go

View workflow job for this annotation

GitHub Actions / build-test

undefined: pb.RegisterChainReaderServer
pb.RegisterReportCodecServer(s, &reportCodecServer{impl: provider.ReportCodec()})
pb.RegisterOnchainConfigCodecServer(s, &onchainConfigCodecServer{impl: provider.OnchainConfigCodec()})
})
Expand Down
2 changes: 1 addition & 1 deletion pkg/loop/internal/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ func (r *relayerServer) NewMedianProvider(ctx context.Context, request *pb.NewMe
pb.RegisterContractConfigTrackerServer(s, &contractConfigTrackerServer{impl: provider.ContractConfigTracker()})
pb.RegisterContractTransmitterServer(s, &contractTransmitterServer{impl: provider.ContractTransmitter()})
pb.RegisterReportCodecServer(s, &reportCodecServer{impl: provider.ReportCodec()})
pb.RegisterMedianContractServer(s, &medianContractServer{impl: provider.MedianContract()})
pb.RegisterChainReaderServer(s, &chainReaderServer{impl: provider.ChainReader()})

Check failure on line 365 in pkg/loop/internal/relayer.go

View workflow job for this annotation

GitHub Actions / build-test

undefined: pb.RegisterChainReaderServer
pb.RegisterOnchainConfigCodecServer(s, &onchainConfigCodecServer{impl: provider.OnchainConfigCodec()})
}, providerRes)
if err != nil {
Expand Down

0 comments on commit 227d75a

Please sign in to comment.