refactor! : bump comet to v1 (#19726)

Co-authored-by: yihuang <yi.codeplayer@gmail.com>
This commit is contained in:
Marko
2024-05-06 14:12:00 +00:00
committed by GitHub
co-authored by yihuang
parent 89ccbc13d1
commit 0dfb54e36a
224 changed files with 6638 additions and 5959 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"fmt"
"time"
cmt "github.com/cometbft/cometbft/proto/tendermint/types"
cmt "github.com/cometbft/cometbft/api/cometbft/types/v1"
coretypes "github.com/cometbft/cometbft/rpc/core/types"
"github.com/cosmos/cosmos-sdk/client"
+1 -1
View File
@@ -95,7 +95,7 @@ func (s *IntegrationTestSuite) TestQueryABCIHeight() {
clientCtx := val.GetClientCtx()
clientCtx = clientCtx.WithHeight(tc.ctxHeight)
req := abci.RequestQuery{
req := abci.QueryRequest{
Path: "store/bank/key",
Height: tc.reqHeight,
Data: address.MustLengthPrefix(val.GetAddress()),
+1 -1
View File
@@ -119,7 +119,7 @@ $ %[1]sd tx [flags] | %[1]sd q wait-tx
return err
}
c, err := rpchttp.New(clientCtx.NodeURI, "/websocket")
c, err := rpchttp.New(clientCtx.NodeURI)
if err != nil {
return err
}