Skip to content

Commit e47f24d

Browse files
authored
Fixed imports (#15)
Co-authored-by: Alexandr Kolesov <alexandr.kolesov@dsr-corporation.com>
1 parent 121392f commit e47f24d

File tree

134 files changed

+313
-313
lines changed

Some content is hidden

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

134 files changed

+313
-313
lines changed

app.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ import (
1818
"encoding/json"
1919
"os"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliance"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliancetest"
24-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/genutil"
25-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/modelinfo"
26-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/pki"
27-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/validator"
2821
bam "github.com/cosmos/cosmos-sdk/baseapp"
2922
"github.com/cosmos/cosmos-sdk/codec"
3023
sdk "github.com/cosmos/cosmos-sdk/types"
@@ -37,6 +30,13 @@ import (
3730
"github.com/tendermint/tendermint/libs/log"
3831
tmtypes "github.com/tendermint/tendermint/types"
3932
dbm "github.com/tendermint/tm-db"
33+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
34+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliance"
35+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliancetest"
36+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/genutil"
37+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/modelinfo"
38+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/pki"
39+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/validator"
4040
)
4141

4242
const appName = "zb-ledger"

cmd/zblcli/main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ import (
1919
"os"
2020
"path"
2121

22-
app "git.dsr-corporation.com/zb-ledger/zb-ledger"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/cmd/settings"
24-
keyUtils "git.dsr-corporation.com/zb-ledger/zb-ledger/restext/key/rest"
25-
proxyUtils "git.dsr-corporation.com/zb-ledger/zb-ledger/restext/proxy/rest"
26-
txUtils "git.dsr-corporation.com/zb-ledger/zb-ledger/restext/tx/rest"
2722
"github.com/cosmos/cosmos-sdk/client"
2823
"github.com/cosmos/cosmos-sdk/client/flags"
2924
"github.com/cosmos/cosmos-sdk/client/keys"
@@ -37,6 +32,11 @@ import (
3732
"github.com/spf13/viper"
3833
"github.com/tendermint/go-amino"
3934
"github.com/tendermint/tendermint/libs/cli"
35+
app "github.com/zigbee-alliance/distributed-compliance-ledger"
36+
"github.com/zigbee-alliance/distributed-compliance-ledger/cmd/settings"
37+
keyUtils "github.com/zigbee-alliance/distributed-compliance-ledger/restext/key/rest"
38+
proxyUtils "github.com/zigbee-alliance/distributed-compliance-ledger/restext/proxy/rest"
39+
txUtils "github.com/zigbee-alliance/distributed-compliance-ledger/restext/tx/rest"
4040
)
4141

4242
func main() {

cmd/zbld/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ import (
1818
"encoding/json"
1919
"io"
2020

21-
app "git.dsr-corporation.com/zb-ledger/zb-ledger"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/cmd/settings"
23-
genutilcli "git.dsr-corporation.com/zb-ledger/zb-ledger/x/genutil/client/cli"
2421
"github.com/cosmos/cosmos-sdk/baseapp"
2522
"github.com/cosmos/cosmos-sdk/server"
2623
sdk "github.com/cosmos/cosmos-sdk/types"
@@ -30,6 +27,9 @@ import (
3027
"github.com/tendermint/tendermint/libs/log"
3128
tmtypes "github.com/tendermint/tendermint/types"
3229
dbm "github.com/tendermint/tm-db"
30+
app "github.com/zigbee-alliance/distributed-compliance-ledger"
31+
"github.com/zigbee-alliance/distributed-compliance-ledger/cmd/settings"
32+
genutilcli "github.com/zigbee-alliance/distributed-compliance-ledger/x/genutil/client/cli"
3333
)
3434

3535
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module git.dsr-corporation.com/zb-ledger/zb-ledger
1+
module github.com/zigbee-alliance/distributed-compliance-ledger
22

33
go 1.13
44

integration_tests/rest/auth_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ import (
1818
"net/http"
1919
"testing"
2020

21-
testconstants "git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/utils"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
2421
"github.com/stretchr/testify/require"
22+
testconstants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
23+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
2525
)
2626

2727
//nolint:godox

integration_tests/rest/compliance_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ import (
1919
"testing"
2020
"time"
2121

22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/utils"
24-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
25-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliance"
2622
"github.com/stretchr/testify/require"
2723
"github.com/tendermint/tendermint/libs/common"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
26+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
27+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliance"
2828
)
2929

3030
//nolint:godox

integration_tests/rest/compliancetest_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package rest_test
1717
import (
1818
"testing"
1919

20-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/utils"
21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
2220
"github.com/stretchr/testify/require"
21+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
22+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
2323
)
2424

2525
//nolint:godox

integration_tests/rest/modelinfo_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ import (
1818
"net/http"
1919
"testing"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/utils"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/modelinfo"
2421
sdk "github.com/cosmos/cosmos-sdk/types"
2522
"github.com/stretchr/testify/require"
2623
"github.com/tendermint/tendermint/libs/common"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
26+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/modelinfo"
2727
)
2828

2929
//nolint:godox

integration_tests/rest/pki_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ package rest_test
1717
import (
1818
"testing"
1919

20-
testconstants "git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/utils"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/pki"
2420
sdk "github.com/cosmos/cosmos-sdk/types"
2521
"github.com/stretchr/testify/require"
22+
testconstants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
23+
"github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/utils"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/pki"
2626
)
2727

2828
//nolint:godox

integration_tests/utils/requests.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,27 @@ import (
2020
"net/http"
2121
"time"
2222

23-
app "git.dsr-corporation.com/zb-ledger/zb-ledger"
24-
constants "git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
25-
extRest "git.dsr-corporation.com/zb-ledger/zb-ledger/restext/tx/rest"
26-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
27-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
28-
authRest "git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/client/rest"
29-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliance"
30-
complianceRest "git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliance/client/rest"
31-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliancetest"
32-
compliancetestRest "git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliancetest/client/rest"
33-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/modelinfo"
34-
modelinfoRest "git.dsr-corporation.com/zb-ledger/zb-ledger/x/modelinfo/client/rest"
35-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/pki"
36-
pkiRest "git.dsr-corporation.com/zb-ledger/zb-ledger/x/pki/client/rest"
3723
keyUtil "github.com/cosmos/cosmos-sdk/client/keys"
3824
"github.com/cosmos/cosmos-sdk/codec"
3925
sdk "github.com/cosmos/cosmos-sdk/types"
4026
restTypes "github.com/cosmos/cosmos-sdk/types/rest"
4127
"github.com/cosmos/cosmos-sdk/x/auth/types"
4228
"github.com/cosmos/go-bip39"
4329
"github.com/tendermint/tendermint/libs/common"
30+
app "github.com/zigbee-alliance/distributed-compliance-ledger"
31+
constants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
32+
extRest "github.com/zigbee-alliance/distributed-compliance-ledger/restext/tx/rest"
33+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
34+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
35+
authRest "github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/client/rest"
36+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliance"
37+
complianceRest "github.com/zigbee-alliance/distributed-compliance-ledger/x/compliance/client/rest"
38+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliancetest"
39+
compliancetestRest "github.com/zigbee-alliance/distributed-compliance-ledger/x/compliancetest/client/rest"
40+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/modelinfo"
41+
modelinfoRest "github.com/zigbee-alliance/distributed-compliance-ledger/x/modelinfo/client/rest"
42+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/pki"
43+
pkiRest "github.com/zigbee-alliance/distributed-compliance-ledger/x/pki/client/rest"
4444
)
4545

4646
func CreateKey(accountName string) (KeyInfo, int) {

integration_tests/utils/types.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ package utils
1717
import (
1818
"encoding/json"
1919

20-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth"
21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/compliance"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/modelinfo"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/pki"
2420
sdk "github.com/cosmos/cosmos-sdk/types"
21+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth"
22+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/compliance"
23+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/modelinfo"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/pki"
2525
)
2626

2727
type ResponseWrapper struct {

restext/key/rest/query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ package rest
1717
import (
1818
"net/http"
1919

20-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
2120
"github.com/cosmos/cosmos-sdk/client/context"
2221
"github.com/cosmos/cosmos-sdk/client/keys"
2322
keys2 "github.com/cosmos/cosmos-sdk/crypto/keys"
2423
"github.com/gorilla/mux"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
2525
)
2626

2727
// Lists all keys in the local keychain.

restext/proxy/rest/query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
"net/http"
2020
"strconv"
2121

22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
2322
"github.com/cosmos/cosmos-sdk/client/context"
2423
"github.com/cosmos/cosmos-sdk/client/rpc"
2524
sdk "github.com/cosmos/cosmos-sdk/types"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
2626
)
2727

2828
func BlocksHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {

restext/tx/rest/query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ import (
2020
"io/ioutil"
2121
"net/http"
2222

23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
2423
"github.com/cosmos/cosmos-sdk/client/context"
2524
"github.com/cosmos/cosmos-sdk/codec"
2625
sdk "github.com/cosmos/cosmos-sdk/types"
2726
restTypes "github.com/cosmos/cosmos-sdk/types/rest"
2827
auth "github.com/cosmos/cosmos-sdk/x/auth/types"
28+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
2929
)
3030

3131
// EncodeTxRequestHandlerFn returns the decode tx REST handler. In particular,

utils/rest/rest.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import (
2020
"net/http"
2121
"strconv"
2222

23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/pagination"
2423
"github.com/cosmos/cosmos-sdk/client"
2524
"github.com/cosmos/cosmos-sdk/client/context"
2625
"github.com/cosmos/cosmos-sdk/codec"
@@ -31,6 +30,7 @@ import (
3130
"github.com/cosmos/cosmos-sdk/x/auth/types"
3231
"github.com/gorilla/mux"
3332
ctypes "github.com/tendermint/tendermint/rpc/core/types"
33+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/pagination"
3434
)
3535

3636
const (

x/auth/alias.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
package auth
1616

1717
import (
18-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/keeper"
19-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
18+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/keeper"
19+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2020
)
2121

2222
const (

x/auth/ante.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ package auth
1717
import (
1818
"fmt"
1919

20-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2120
sdk "github.com/cosmos/cosmos-sdk/types"
2221
"github.com/cosmos/cosmos-sdk/x/auth"
2322
"github.com/tendermint/tendermint/crypto"
2423
"github.com/tendermint/tendermint/crypto/ed25519"
2524
"github.com/tendermint/tendermint/crypto/secp256k1"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2626
)
2727

2828
// SignatureVerificationGasConsumer is the type of function that is used to both consume gas when verifying signatures

x/auth/client/cli/query.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ package cli
1717
import (
1818
"fmt"
1919

20-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/cli"
21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/pagination"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/keeper"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2420
"github.com/cosmos/cosmos-sdk/client"
2521
"github.com/cosmos/cosmos-sdk/codec"
2622
sdk "github.com/cosmos/cosmos-sdk/types"
2723
"github.com/spf13/cobra"
2824
"github.com/spf13/viper"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/cli"
26+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/pagination"
27+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/keeper"
28+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2929
)
3030

3131
func GetQueryCmd(storeKey string, cdc *codec.Codec) *cobra.Command {

x/auth/client/cli/tx.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ import (
1818
"fmt"
1919
"strings"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/cli"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2321
"github.com/cosmos/cosmos-sdk/client"
2422
"github.com/cosmos/cosmos-sdk/codec"
2523
sdk "github.com/cosmos/cosmos-sdk/types"
2624
"github.com/spf13/cobra"
2725
"github.com/spf13/viper"
26+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/cli"
27+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2828
)
2929

3030
func GetTxCmd(storeKey string, cdc *codec.Codec) *cobra.Command {

x/auth/client/rest/query.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"fmt"
1919
"net/http"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/keeper"
23-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2421
"github.com/cosmos/cosmos-sdk/client/context"
2522
sdk "github.com/cosmos/cosmos-sdk/types"
23+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/keeper"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2626
)
2727

2828
func accountsHandler(cliCtx context.CLIContext, storeName string) http.HandlerFunc {

x/auth/client/rest/tx.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"fmt"
1919
"net/http"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/utils/rest"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2321
"github.com/cosmos/cosmos-sdk/client/context"
2422
sdk "github.com/cosmos/cosmos-sdk/types"
2523
restTypes "github.com/cosmos/cosmos-sdk/types/rest"
24+
"github.com/zigbee-alliance/distributed-compliance-ledger/utils/rest"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2626
)
2727

2828
type ProposeAddAccountRequest struct {

x/auth/handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
"fmt"
1919
"math"
2020

21-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/keeper"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2321
sdk "github.com/cosmos/cosmos-sdk/types"
22+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/keeper"
23+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2424
)
2525

2626
func NewHandler(keeper keeper.Keeper) sdk.Handler {

x/auth/handler_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ package auth
1818
import (
1919
"testing"
2020

21-
testconstants "git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
22-
"git.dsr-corporation.com/zb-ledger/zb-ledger/x/auth/internal/types"
2321
sdk "github.com/cosmos/cosmos-sdk/types"
2422
"github.com/stretchr/testify/require"
2523
"github.com/tendermint/tendermint/crypto"
24+
testconstants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
25+
"github.com/zigbee-alliance/distributed-compliance-ledger/x/auth/internal/types"
2626
)
2727

2828
func TestHandler_CreateAccount_OneApprovalIsNeeded(t *testing.T) {

x/auth/handler_test_setup.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
package auth
1616

1717
import (
18-
testconstants "git.dsr-corporation.com/zb-ledger/zb-ledger/integration_tests/constants"
1918
"github.com/cosmos/cosmos-sdk/codec"
2019
"github.com/cosmos/cosmos-sdk/store"
2120
sdk "github.com/cosmos/cosmos-sdk/types"
2221
"github.com/tendermint/go-amino"
2322
abci "github.com/tendermint/tendermint/abci/types"
2423
"github.com/tendermint/tendermint/libs/log"
2524
dbm "github.com/tendermint/tm-db"
25+
testconstants "github.com/zigbee-alliance/distributed-compliance-ledger/integration_tests/constants"
2626
)
2727

2828
type TestSetup struct {

0 commit comments

Comments
 (0)