Skip to content

Commit

Permalink
fix: unrevertible tx hashes in bidArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
irrun committed Aug 27, 2024
1 parent b3288b9 commit 0392500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/bidder.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ func (b *Bidder) bid(work *environment) {
_, err := cli.SendBid(context.Background(), bidArgs)
if err != nil {
b.deleteBestWork(work)
log.Error("Bidder: bidding failed", "err", err, "number", work.header.Number, "txs", len(work.txs), "unrevertible", len(work.UnRevertible))
log.Error("Bidder: bidding failed", "err", err, "number", work.header.Number, "txcount", len(work.txs), "unrevertible", len(work.UnRevertible))

var bidErr rpc.Error
ok := errors.As(err, &bidErr)
Expand Down

0 comments on commit 0392500

Please sign in to comment.