Skip to content

Commit

Permalink
Fix failed DA submission
Browse files Browse the repository at this point in the history
  • Loading branch information
0xalex88 committed Apr 17, 2024
1 parent f788b35 commit 2091903
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion op-batcher/batcher/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,8 @@ func (l *BatchSubmitter) sendTransaction(ctx context.Context, txdata txData, que
data = append([]byte{fraxda.DerivationVersionFraxDa}, id...)
} else {
l.Log.Error("fraxda: data submission failed", "err", err)
return fmt.Errorf("could not submit tx data to fraxda: %w", err)
l.recordFailedTx(txdata.ID(), err)
return nil
}
}
candidate = l.calldataTxCandidate(data)
Expand Down

0 comments on commit 2091903

Please sign in to comment.