We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73694ea commit 3dd0355Copy full SHA for 3dd0355
pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go
@@ -203,6 +203,10 @@ func (t *Task) Execute(ctx context.Context) error {
203
t.ctx.SetResult(types.TaskResultFailure)
204
return nil
205
}
206
+ // todo: creare una funzione che legge l'hash della tx e capisce se e una di quelle che ho inviato io, inizialmente faccio log per testare
207
+ for _, tx := range *result.txs {
208
+ t.logger.Infof("Tx hash: %s", tx.Hash().Hex())
209
+ }
210
gotTx += len(*result.txs)
211
case <-time.After(180 * time.Second):
212
t.logger.Warnf("Timeout after 180 seconds while reading transaction messages. Re-sending transactions...")
0 commit comments