We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cad42a7 commit 645f0a0Copy full SHA for 645f0a0
packages/taiko-client/pkg/utils/txmgr_selector.go
@@ -4,6 +4,7 @@ import (
4
"time"
5
6
"github.com/ethereum-optimism/optimism/op-service/txmgr"
7
+ "github.com/modern-go/reflect2"
8
)
9
10
var (
@@ -42,7 +43,7 @@ func NewTxMgrSelector(
42
43
// Select selects a transaction manager based on the current state.
44
func (s *TxMgrSelector) Select() (txmgr.TxManager, bool) {
45
// If there is no private transaction manager, return the normal transaction manager.
- if s.privateTxMgr == nil {
46
+ if reflect2.IsNil(s.privateTxMgr) {
47
return s.txMgr, false
48
}
49
0 commit comments