refactor!: migrate Cosmos SDK to CometBFT (#14897)

This commit is contained in:
Julien Robert
2023-02-05 14:51:33 +01:00
committed by GitHub
parent 6978710699
commit 41a3dfeced
391 changed files with 3405 additions and 2984 deletions
+1 -1
View File
@@ -10,9 +10,9 @@ import (
"strings"
"testing"
tmcli "github.com/cometbft/cometbft/libs/cli"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
tmcli "github.com/tendermint/tendermint/libs/cli"
"cosmossdk.io/depinject"
"cosmossdk.io/math"
+1 -1
View File
@@ -4,9 +4,9 @@ import (
"fmt"
"strings"
abci "github.com/cometbft/cometbft/abci/types"
dbm "github.com/cosmos/cosmos-db"
"github.com/stretchr/testify/suite"
abci "github.com/tendermint/tendermint/abci/types"
"cosmossdk.io/depinject"
pruningtypes "cosmossdk.io/store/pruning/types"
+5 -5
View File
@@ -15,12 +15,12 @@ import (
"github.com/spf13/cobra"
"github.com/stretchr/testify/require"
abci "github.com/cometbft/cometbft/abci/types"
tmjson "github.com/cometbft/cometbft/libs/json"
"github.com/cometbft/cometbft/libs/log"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
tmtypes "github.com/cometbft/cometbft/types"
dbm "github.com/cosmos/cosmos-db"
abci "github.com/tendermint/tendermint/abci/types"
tmjson "github.com/tendermint/tendermint/libs/json"
"github.com/tendermint/tendermint/libs/log"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
tmtypes "github.com/tendermint/tendermint/types"
"cosmossdk.io/simapp"
"github.com/cosmos/cosmos-sdk/client"
+2 -2
View File
@@ -8,10 +8,10 @@ import (
"testing"
"cosmossdk.io/math"
"github.com/cometbft/cometbft/proto/tendermint/crypto"
"github.com/cometbft/cometbft/rpc/client/http"
"github.com/cosmos/gogoproto/proto"
"github.com/stretchr/testify/suite"
"github.com/tendermint/tendermint/proto/tendermint/crypto"
"github.com/tendermint/tendermint/rpc/client/http"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/crypto/hd"
+1 -1
View File
@@ -6,8 +6,8 @@ package upgrade
import (
"testing"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
"cosmossdk.io/simapp"
"github.com/cosmos/cosmos-sdk/testutil/network"