Skip to content

Commit 286a3ab

Browse files
committed
fix: mockgen command in efp types.go
Changed the go:generate directive to explicitly use 'go tool mockgen' instead of just 'mockgen' for generating mocks. This may improve compatibility or clarity in environments where the tool is not globally installed.
1 parent f957022 commit 286a3ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/wallet/thirdparty/efp/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/ethereum/go-ethereum/common"
77
)
88

9-
//go:generate mockgen -package=mock_efp -source=types.go -destination=mock/mock_efp.go
9+
//go:generate go tool mockgen -package=mock_efp -source=types.go -destination=mock/mock_efp.go
1010

1111
// FollowingDataProvider defines the interface for providers that can fetch following addresses
1212
type FollowingDataProvider interface {

0 commit comments

Comments
 (0)