Skip to content

Commit decdd80

Browse files
authored
Merge pull request #8191 from onflow/bastian/cadence-vm-merge-master
[Cadence VM] Update feature branch
2 parents 19865dc + bab4512 commit decdd80

File tree

283 files changed

+13482
-7424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+13482
-7424
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ jobs:
6262
uses: golangci/golangci-lint-action@v6
6363
continue-on-error: true # after installation (what we care about), this step will fail - this line allows workflow to continue
6464
with:
65-
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
66-
version: v1.63
6765
args: "--no-config --disable-all" # set args so that no linters are actually run
6866
- name: Build custom linter binary
6967
if: steps.cache-linter.outputs.cache-hit != 'true'

.mockery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ packages:
2222
config:
2323
dir: "consensus/hotstuff/mocks"
2424
outpkg: "mocks"
25+
github.com/onflow/flow-go/engine/access/ingestion/collections:
2526
github.com/onflow/flow-go/engine/access/ingestion/tx_error_messages:
2627
github.com/onflow/flow-go/engine/access/rest/common/models:
2728
github.com/onflow/flow-go/engine/access/rest/websockets:
@@ -31,7 +32,6 @@ packages:
3132
github.com/onflow/flow-go/engine/access/rpc/backend/node_communicator:
3233
github.com/onflow/flow-go/engine/access/rpc/backend/transactions/error_messages:
3334
github.com/onflow/flow-go/engine/access/rpc/backend/transactions/provider:
34-
github.com/onflow/flow-go/engine/access/rpc/backend/transactions/retrier:
3535
github.com/onflow/flow-go/engine/access/rpc/connection:
3636
github.com/onflow/flow-go/engine/access/state_stream:
3737
github.com/onflow/flow-go/engine/access/subscription:

access/api.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ type TransactionsAPI interface {
5959

6060
GetSystemTransaction(ctx context.Context, txID flow.Identifier, blockID flow.Identifier) (*flow.TransactionBody, error)
6161
GetSystemTransactionResult(ctx context.Context, txID flow.Identifier, blockID flow.Identifier, encodingVersion entities.EventEncodingVersion) (*accessmodel.TransactionResult, error)
62+
63+
GetScheduledTransaction(ctx context.Context, scheduledTxID uint64) (*flow.TransactionBody, error)
64+
GetScheduledTransactionResult(ctx context.Context, scheduledTxID uint64, encodingVersion entities.EventEncodingVersion) (*accessmodel.TransactionResult, error)
6265
}
6366

6467
type TransactionStreamAPI interface {

access/mock/api.go

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

access/mock/transactions_api.go

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

0 commit comments

Comments
 (0)