Skip to content

Commit 645f0a0

Browse files
authored
fix(taiko-client): fix bug about nil interface check (#18886)
1 parent cad42a7 commit 645f0a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/taiko-client/pkg/utils/txmgr_selector.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"time"
55

66
"github.com/ethereum-optimism/optimism/op-service/txmgr"
7+
"github.com/modern-go/reflect2"
78
)
89

910
var (
@@ -42,7 +43,7 @@ func NewTxMgrSelector(
4243
// Select selects a transaction manager based on the current state.
4344
func (s *TxMgrSelector) Select() (txmgr.TxManager, bool) {
4445
// If there is no private transaction manager, return the normal transaction manager.
45-
if s.privateTxMgr == nil {
46+
if reflect2.IsNil(s.privateTxMgr) {
4647
return s.txMgr, false
4748
}
4849

0 commit comments

Comments
 (0)