File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
25
25
"github.com/onflow/flow-go-sdk/crypto"
26
26
27
- "github.com/onflow/flow-go/access"
27
+ "github.com/onflow/flow-go/access/validator "
28
28
fvmerrors "github.com/onflow/flow-go/fvm/errors"
29
29
flowgo "github.com/onflow/flow-go/model/flow"
30
30
)
@@ -260,13 +260,13 @@ func (f *FVMError) Unwrap() error {
260
260
261
261
func ConvertAccessError (err error ) error {
262
262
switch typedErr := err .(type ) {
263
- case access .IncompleteTransactionError :
263
+ case validator .IncompleteTransactionError :
264
264
return & IncompleteTransactionError {MissingFields : typedErr .MissingFields }
265
- case access .ExpiredTransactionError :
265
+ case validator .ExpiredTransactionError :
266
266
return & ExpiredTransactionError {RefHeight : typedErr .RefHeight , FinalHeight : typedErr .FinalHeight }
267
- case access .InvalidGasLimitError :
267
+ case validator .InvalidGasLimitError :
268
268
return & InvalidTransactionGasLimitError {Maximum : typedErr .Maximum , Actual : typedErr .Actual }
269
- case access .InvalidScriptError :
269
+ case validator .InvalidScriptError :
270
270
return & InvalidTransactionScriptError {ParserErr : typedErr .ParserErr }
271
271
}
272
272
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
"fmt"
25
25
"sync"
26
26
27
- "github.com/onflow/flow-go/access"
27
+ "github.com/onflow/flow-go/access/validator "
28
28
"github.com/onflow/flow-go/fvm/environment"
29
29
"github.com/onflow/flow-go/fvm/storage/snapshot"
30
30
flowgo "github.com/onflow/flow-go/model/flow"
@@ -52,7 +52,7 @@ type Store struct {
52
52
}
53
53
54
54
var _ environment.Blocks = & Store {}
55
- var _ access .Blocks = & Store {}
55
+ var _ validator .Blocks = & Store {}
56
56
var _ EmulatorStorage = & Store {}
57
57
58
58
func (b * Store ) HeaderByID (id flowgo.Identifier ) (* flowgo.Header , error ) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
26
26
"github.com/psiemens/graceland"
27
27
28
- "github.com/onflow/flow-go/access"
28
+ "github.com/onflow/flow-go/access/validator "
29
29
"github.com/onflow/flow-go/fvm/environment"
30
30
"github.com/onflow/flow-go/fvm/storage/snapshot"
31
31
flowgo "github.com/onflow/flow-go/model/flow"
@@ -46,7 +46,7 @@ import (
46
46
type EmulatorStorage interface {
47
47
graceland.Routine
48
48
environment.Blocks
49
- access .Blocks
49
+ validator .Blocks
50
50
LatestBlockHeight (ctx context.Context ) (uint64 , error )
51
51
52
52
// LatestBlock returns the block with the highest block height.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
sdk "github.com/onflow/flow-go-sdk"
13
13
14
- "github.com/onflow/flow-go/access"
14
+ "github.com/onflow/flow-go/access/validator "
15
15
"github.com/onflow/flow-go/integration/convert"
16
16
"github.com/onflow/flow-go/model/flow"
17
17
"github.com/onflow/flow-go/utils/unittest"
@@ -65,7 +65,7 @@ func (suite *IngressSuite) TestTransactionIngress_InvalidTransaction() {
65
65
tx .SetScript (nil )
66
66
})
67
67
68
- expected := access .IncompleteTransactionError {
68
+ expected := validator .IncompleteTransactionError {
69
69
MissingFields : []string {flow .TransactionFieldScript .String ()},
70
70
}
71
71
You can’t perform that action at this time.
0 commit comments