Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions blast-geth/miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ func (w *worker) mainLoop() {
func() {
defer func() {
if err := recover(); err != nil {
log.Error("programmer error panic occured during main loop transaction", "panic", err)
log.Error("programmer error panic occurred during main loop transaction", "panic", err)
}
}()
// Apply transactions to the pending state if we're not sealing
Expand Down Expand Up @@ -1128,7 +1128,7 @@ func (w *worker) prepareWork(genParams *generateParams) (*environment, error) {
func (w *worker) fillTransactions(interrupt *atomic.Int32, env *environment) error {
defer func() {
if err := recover(); err != nil {
log.Error("programmer error panic occured during fill transaction", "panic", err)
log.Error("programmer error panic occurred during fill transaction", "panic", err)
}
}()

Expand Down