Skip to content

Commit 8a9fb44

Browse files
committed
fix minicluster & upgrade package to v2
1 parent ef0af12 commit 8a9fb44

File tree

780 files changed

+2875
-2872
lines changed

Some content is hidden

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

780 files changed

+2875
-2872
lines changed

action/action_deserializer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
"github.com/stretchr/testify/require"
1818
"google.golang.org/protobuf/proto"
1919

20-
"github.com/iotexproject/iotex-core/test/identityset"
21-
"github.com/iotexproject/iotex-core/testutil"
20+
"github.com/iotexproject/iotex-core/v2/test/identityset"
21+
"github.com/iotexproject/iotex-core/v2/testutil"
2222
)
2323

2424
func TestActionDeserializer(t *testing.T) {

action/action_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/pkg/errors"
1414
"github.com/stretchr/testify/require"
1515

16-
"github.com/iotexproject/iotex-core/test/identityset"
17-
"github.com/iotexproject/iotex-core/testutil"
16+
"github.com/iotexproject/iotex-core/v2/test/identityset"
17+
"github.com/iotexproject/iotex-core/v2/testutil"
1818
)
1919

2020
func TestActionProtoAndVerify(t *testing.T) {

action/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/ethereum/go-ethereum/core/types"
1414
"github.com/iotexproject/iotex-address/address"
1515

16-
"github.com/iotexproject/iotex-core/pkg/version"
16+
"github.com/iotexproject/iotex-core/v2/pkg/version"
1717
)
1818

1919
var (

action/builder_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"github.com/iotexproject/iotex-proto/golang/iotextypes"
2020
"github.com/stretchr/testify/require"
2121

22-
. "github.com/iotexproject/iotex-core/pkg/util/assertions"
23-
"github.com/iotexproject/iotex-core/pkg/version"
22+
. "github.com/iotexproject/iotex-core/v2/pkg/util/assertions"
23+
"github.com/iotexproject/iotex-core/v2/pkg/version"
2424
)
2525

2626
func TestBuilderEthAddr(t *testing.T) {

action/candidate_activate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/iotexproject/iotex-proto/golang/iotextypes"
1111
"github.com/pkg/errors"
1212

13-
"github.com/iotexproject/iotex-core/pkg/version"
13+
"github.com/iotexproject/iotex-core/v2/pkg/version"
1414
)
1515

1616
const (

action/candidate_endorsement.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/iotexproject/iotex-proto/golang/iotextypes"
1111
"github.com/pkg/errors"
1212

13-
"github.com/iotexproject/iotex-core/pkg/version"
13+
"github.com/iotexproject/iotex-core/v2/pkg/version"
1414
)
1515

1616
const (

action/candidate_register.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"github.com/pkg/errors"
1919
"google.golang.org/protobuf/proto"
2020

21-
"github.com/iotexproject/iotex-core/pkg/util/byteutil"
22-
"github.com/iotexproject/iotex-core/pkg/version"
21+
"github.com/iotexproject/iotex-core/v2/pkg/util/byteutil"
22+
"github.com/iotexproject/iotex-core/v2/pkg/version"
2323
)
2424

2525
const (

action/candidate_transfer_ownership.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/iotexproject/iotex-proto/golang/iotextypes"
1313
"google.golang.org/protobuf/proto"
1414

15-
"github.com/iotexproject/iotex-core/pkg/util/byteutil"
16-
"github.com/iotexproject/iotex-core/pkg/version"
15+
"github.com/iotexproject/iotex-core/v2/pkg/util/byteutil"
16+
"github.com/iotexproject/iotex-core/v2/pkg/version"
1717
)
1818

1919
const (

action/candidate_transfer_ownership_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/iotexproject/iotex-address/address"
1212

13-
"github.com/iotexproject/iotex-core/pkg/util/byteutil"
13+
"github.com/iotexproject/iotex-core/v2/pkg/util/byteutil"
1414
)
1515

1616
func TestCandidateTransferOwnership(t *testing.T) {

action/candidate_update.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
"google.golang.org/protobuf/proto"
1818

1919
"github.com/iotexproject/iotex-address/address"
20-
"github.com/iotexproject/iotex-core/pkg/util/byteutil"
21-
"github.com/iotexproject/iotex-core/pkg/version"
20+
"github.com/iotexproject/iotex-core/v2/pkg/util/byteutil"
21+
"github.com/iotexproject/iotex-core/v2/pkg/version"
2222
"github.com/iotexproject/iotex-proto/golang/iotextypes"
2323
)
2424

0 commit comments

Comments
 (0)