Skip to content

Commit

Permalink
Merge pull request ethereum#14 from sei-protocol/disable-daemons
Browse files Browse the repository at this point in the history
disable tx cache sender
  • Loading branch information
codchen authored Feb 6, 2024
2 parents c047698 + 6378602 commit c25df4e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/sender_cacher.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
package core

import (
"runtime"

"github.com/ethereum/go-ethereum/core/types"
)

// SenderCacher is a concurrent transaction sender recoverer and cacher.
var SenderCacher = newTxSenderCacher(runtime.NumCPU())
// var SenderCacher = newTxSenderCacher(runtime.NumCPU())
var SenderCacher = newTxSenderCacher(0)

// txSenderCacherRequest is a request for recovering transaction senders with a
// specific signature scheme and caching it into the transactions themselves.
Expand Down

0 comments on commit c25df4e

Please sign in to comment.