@@ -70,7 +70,7 @@ func main() {
70
70
sendC := make (chan []byte )
71
71
72
72
// Inbound observations
73
- obsvC := make (chan * gossipv1.SignedObservation , 50 )
73
+ obsvC := make (chan * common. MsgWithTimeStamp [ gossipv1.SignedObservation ], 1024 )
74
74
75
75
// Inbound observation requests
76
76
obsvReqC := make (chan * gossipv1.ObservationRequest , 50 )
@@ -110,16 +110,16 @@ func main() {
110
110
case <- rootCtx .Done ():
111
111
return
112
112
case o := <- obsvC :
113
- if o .MessageId [:3 ] != "26/" && o .MessageId [:2 ] != "7/" {
114
- ga := eth_common .BytesToAddress (o .Addr ).String ()
113
+ if o .Msg . MessageId [:3 ] != "26/" && o . Msg .MessageId [:2 ] != "7/" {
114
+ ga := eth_common .BytesToAddress (o .Msg . Addr ).String ()
115
115
// logger.Warn("observation", zap.String("id",o.MessageId), zap.String("addr",ga))
116
- if _ , ok := obsvByHash [o .MessageId ]; ! ok {
117
- obsvByHash [o .MessageId ] = map [string ]time.Time {}
116
+ if _ , ok := obsvByHash [o .Msg . MessageId ]; ! ok {
117
+ obsvByHash [o .Msg . MessageId ] = map [string ]time.Time {}
118
118
}
119
- if _ , ok := obsvByHash [o.MessageId ][ga ]; ! ok {
120
- obsvByHash [o.MessageId ][ga ] = time .Now ()
119
+ if _ , ok := obsvByHash [o .Msg . MessageId ][ga ]; ! ok {
120
+ obsvByHash [o .Msg . MessageId ][ga ] = time .Now ()
121
121
}
122
- logger .Warn ("status" , zap .String ("id" , o .MessageId ), zap .Any ("msg" , obsvByHash [o .MessageId ]))
122
+ logger .Warn ("status" , zap .String ("id" , o .Msg . MessageId ), zap .Any ("msg" , obsvByHash [o . Msg .MessageId ]))
123
123
}
124
124
}
125
125
}
@@ -189,8 +189,38 @@ func main() {
189
189
}
190
190
191
191
// Run supervisor.
192
+ components := p2p .DefaultComponents ()
193
+ components .Port = p2pPort
192
194
supervisor .New (rootCtx , logger , func (ctx context.Context ) error {
193
- if err := supervisor .Run (ctx , "p2p" , p2p .Run (obsvC , obsvReqC , nil , sendC , signedInC , priv , nil , gst , p2pPort , p2pNetworkID , p2pBootstrap , "" , false , rootCtxCancel , nil , govConfigC , govStatusC )); err != nil {
195
+ if err := supervisor .Run (ctx ,
196
+ "p2p" ,
197
+ p2p .Run (obsvC ,
198
+ obsvReqC ,
199
+ nil ,
200
+ sendC ,
201
+ signedInC ,
202
+ priv ,
203
+ nil ,
204
+ gst ,
205
+ p2pNetworkID ,
206
+ p2pBootstrap ,
207
+ "" ,
208
+ false ,
209
+ rootCtxCancel ,
210
+ nil ,
211
+ nil ,
212
+ govConfigC ,
213
+ govStatusC ,
214
+ components ,
215
+ nil ,
216
+ false ,
217
+ false ,
218
+ nil ,
219
+ nil ,
220
+ "" ,
221
+ 0 ,
222
+ "" ,
223
+ )); err != nil {
194
224
return err
195
225
}
196
226
0 commit comments