Skip to content

Commit

Permalink
op-node: continue on retrieval error (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxcanfly committed Nov 14, 2023
1 parent bd85563 commit f278963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-node/rollup/derive/calldata_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func DataFromEVMTransactions(config *rollup.Config, daCfg *rollup.DAConfig, batc
data, err := daCfg.Client.NamespacedData(context.Background(), daCfg.Namespace, uint64(height))
if err != nil {
log.Warn("unable to retrieve data from da", "err", err)
return nil, err
continue
}
log.Warn("retrieved data", "data", hex.EncodeToString(data[index]))
out = append(out, data[index])
Expand Down

0 comments on commit f278963

Please sign in to comment.