Skip to content

Commit

Permalink
typo fix Update builder.go
Browse files Browse the repository at this point in the history
  • Loading branch information
dedyshkaPexto authored Jan 20, 2025
1 parent 06cb9c7 commit 04fd744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (b *Builder) Build(ctx context.Context, payload *Payload) (*monomer.Block,
if !payload.NoTxPool {
for {
// TODO there is risk of losing txs if mempool db fails.
// we need to fix db consistency in general, so we're just panicing on errors for now.
// we need to fix db consistency in general, so we're just panicking on errors for now.
length, err := b.mempool.Len()
if err != nil {
panic(fmt.Errorf("enqueue: %v", err))
Expand Down

0 comments on commit 04fd744

Please sign in to comment.