Skip to content

Commit f5b1a2c

Browse files
authored
Merge pull request #843 from onflow/auto-update-onflow-cadence-v1.4.0
Update to Cadence v1.4.0
2 parents 3f28741 + 53cd2ff commit f5b1a2c

10 files changed

Lines changed: 1136 additions & 168 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ coverage: test
1616

1717
.PHONY: generate
1818
generate:
19-
go get -d github.com/vektra/mockery/cmd/mockery
19+
go install github.com/vektra/mockery/v2@v2.53.3
2020
go generate ./...
2121

2222
.PHONY: ci

access/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"github.com/onflow/flow-go-sdk"
3333
)
3434

35-
//go:generate go run github.com/vektra/mockery/cmd/mockery --name Client --structname Client --output mocks
35+
//go:generate mockery --name Client --structname Client --output mocks
3636

3737
type Client interface {
3838
// Ping is used to check if the access node is alive and healthy.

access/grpc/grpc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
package grpc
2020

21-
//go:generate go run github.com/vektra/mockery/cmd/mockery --name RPCClient --structname MockRPCClient --output mocks
22-
//go:generate go run github.com/vektra/mockery/cmd/mockery --name ExecutionDataRPCClient --structname MockExecutionDataRPCClient --output mocks
21+
//go:generate mockery --name RPCClient --structname MockRPCClient --output mocks
22+
//go:generate mockery --name ExecutionDataRPCClient --structname MockExecutionDataRPCClient --output mocks
2323

2424
import (
2525
"context"

access/grpc/mocks/ExecutionDataRPCClient.go

Lines changed: 119 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)