Skip to content

Commit bf2a91a

Browse files
committed
update emulator
1 parent e0e50d6 commit bf2a91a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

integration/internal/emulator/errors.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
"github.com/onflow/flow-go-sdk/crypto"
2626

27-
"github.com/onflow/flow-go/access"
27+
"github.com/onflow/flow-go/access/validator"
2828
fvmerrors "github.com/onflow/flow-go/fvm/errors"
2929
flowgo "github.com/onflow/flow-go/model/flow"
3030
)
@@ -260,13 +260,13 @@ func (f *FVMError) Unwrap() error {
260260

261261
func ConvertAccessError(err error) error {
262262
switch typedErr := err.(type) {
263-
case access.IncompleteTransactionError:
263+
case validator.IncompleteTransactionError:
264264
return &IncompleteTransactionError{MissingFields: typedErr.MissingFields}
265-
case access.ExpiredTransactionError:
265+
case validator.ExpiredTransactionError:
266266
return &ExpiredTransactionError{RefHeight: typedErr.RefHeight, FinalHeight: typedErr.FinalHeight}
267-
case access.InvalidGasLimitError:
267+
case validator.InvalidGasLimitError:
268268
return &InvalidTransactionGasLimitError{Maximum: typedErr.Maximum, Actual: typedErr.Actual}
269-
case access.InvalidScriptError:
269+
case validator.InvalidScriptError:
270270
return &InvalidTransactionScriptError{ParserErr: typedErr.ParserErr}
271271
}
272272

integration/internal/emulator/memstore.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"sync"
2626

27-
"github.com/onflow/flow-go/access"
27+
"github.com/onflow/flow-go/access/validator"
2828
"github.com/onflow/flow-go/fvm/environment"
2929
"github.com/onflow/flow-go/fvm/storage/snapshot"
3030
flowgo "github.com/onflow/flow-go/model/flow"
@@ -52,7 +52,7 @@ type Store struct {
5252
}
5353

5454
var _ environment.Blocks = &Store{}
55-
var _ access.Blocks = &Store{}
55+
var _ validator.Blocks = &Store{}
5656
var _ EmulatorStorage = &Store{}
5757

5858
func (b *Store) HeaderByID(id flowgo.Identifier) (*flowgo.Header, error) {

integration/internal/emulator/store.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525

2626
"github.com/psiemens/graceland"
2727

28-
"github.com/onflow/flow-go/access"
28+
"github.com/onflow/flow-go/access/validator"
2929
"github.com/onflow/flow-go/fvm/environment"
3030
"github.com/onflow/flow-go/fvm/storage/snapshot"
3131
flowgo "github.com/onflow/flow-go/model/flow"
@@ -46,7 +46,7 @@ import (
4646
type EmulatorStorage interface {
4747
graceland.Routine
4848
environment.Blocks
49-
access.Blocks
49+
validator.Blocks
5050
LatestBlockHeight(ctx context.Context) (uint64, error)
5151

5252
// LatestBlock returns the block with the highest block height.

integration/tests/collection/ingress_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
sdk "github.com/onflow/flow-go-sdk"
1313

14-
"github.com/onflow/flow-go/access"
14+
"github.com/onflow/flow-go/access/validator"
1515
"github.com/onflow/flow-go/integration/convert"
1616
"github.com/onflow/flow-go/model/flow"
1717
"github.com/onflow/flow-go/utils/unittest"
@@ -65,7 +65,7 @@ func (suite *IngressSuite) TestTransactionIngress_InvalidTransaction() {
6565
tx.SetScript(nil)
6666
})
6767

68-
expected := access.IncompleteTransactionError{
68+
expected := validator.IncompleteTransactionError{
6969
MissingFields: []string{flow.TransactionFieldScript.String()},
7070
}
7171

0 commit comments

Comments
 (0)