Skip to content

Commit

Permalink
chore: renamed proto
Browse files Browse the repository at this point in the history
  • Loading branch information
troykessler committed Jun 17, 2024
1 parent 04fde58 commit 517413c
Show file tree
Hide file tree
Showing 201 changed files with 1,445 additions and 1,427 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ endif
proto-gen: check-proto-deps
@echo "Generating Protobuf files"
@go run github.com/bufbuild/buf/cmd/buf@$(BUF_VERSION) generate
@mv ./proto/tendermint/abci/types.pb.go ./abci/types/
@cp ./proto/tendermint/rpc/grpc/types.pb.go ./rpc/grpc
@mv ./proto/celestia-core/abci/types.pb.go ./abci/types/
@cp ./proto/celestia-core/rpc/grpc/types.pb.go ./rpc/grpc
.PHONY: proto-gen

# These targets are provided for convenience and are intended for local
Expand Down
2 changes: 1 addition & 1 deletion abci/example/kvstore/kvstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/KYVENetwork/celestia-core/abci/example/code"
abciserver "github.com/KYVENetwork/celestia-core/abci/server"
"github.com/KYVENetwork/celestia-core/abci/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion abci/example/kvstore/persistent_kvstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/KYVENetwork/celestia-core/abci/types"
cryptoenc "github.com/KYVENetwork/celestia-core/crypto/encoding"
"github.com/KYVENetwork/celestia-core/libs/log"
pc "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
pc "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion abci/types/messages_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/stretchr/testify/assert"

cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
)

func TestMarshalJSON(t *testing.T) {
Expand Down
492 changes: 246 additions & 246 deletions abci/types/types.pb.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blockchain/msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/gogo/protobuf/proto"

"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
2 changes: 1 addition & 1 deletion blockchain/msgs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
2 changes: 1 addition & 1 deletion blockchain/v0/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
bc "github.com/KYVENetwork/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
2 changes: 1 addition & 1 deletion blockchain/v0/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/mempool/mock"
"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/proxy"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
Expand Down
2 changes: 1 addition & 1 deletion blockchain/v1/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
bc "github.com/KYVENetwork/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
4 changes: 2 additions & 2 deletions blockchain/v1/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/mempool/mock"
"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/proxy"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
Expand Down
2 changes: 1 addition & 1 deletion blockchain/v2/io.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
)
Expand Down
2 changes: 1 addition & 1 deletion blockchain/v2/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
cmtsync "github.com/KYVENetwork/celestia-core/libs/sync"
"github.com/KYVENetwork/celestia-core/p2p"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
)
Expand Down
2 changes: 1 addition & 1 deletion blockchain/v2/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/KYVENetwork/celestia-core/mempool/mock"
"github.com/KYVENetwork/celestia-core/p2p"
"github.com/KYVENetwork/celestia-core/p2p/conn"
bcproto "github.com/KYVENetwork/celestia-core/proto/tendermint/blockchain"
bcproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/blockchain"
"github.com/KYVENetwork/celestia-core/proxy"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cometbft/commands/reindex_event_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

abcitypes "github.com/KYVENetwork/celestia-core/abci/types"
cmtcfg "github.com/KYVENetwork/celestia-core/config"
protocmtstate "github.com/KYVENetwork/celestia-core/proto/tendermint/state"
protocmtstate "github.com/KYVENetwork/celestia-core/proto/celestia-core/state"
blockmocks "github.com/KYVENetwork/celestia-core/state/indexer/mocks"
"github.com/KYVENetwork/celestia-core/state/mocks"
txmocks "github.com/KYVENetwork/celestia-core/state/txindex/mocks"
Expand Down
4 changes: 2 additions & 2 deletions consensus/byzantine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (
mempoolv0 "github.com/KYVENetwork/celestia-core/mempool/v0"
mempoolv1 "github.com/KYVENetwork/celestia-core/mempool/v1"
"github.com/KYVENetwork/celestia-core/p2p"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
2 changes: 1 addition & 1 deletion consensus/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (
mempoolv1 "github.com/KYVENetwork/celestia-core/mempool/v1"
"github.com/KYVENetwork/celestia-core/p2p"
"github.com/KYVENetwork/celestia-core/privval"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/store"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
4 changes: 2 additions & 2 deletions consensus/invalid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
cmtrand "github.com/KYVENetwork/celestia-core/libs/rand"
"github.com/KYVENetwork/celestia-core/p2p"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
4 changes: 2 additions & 2 deletions consensus/msgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/KYVENetwork/celestia-core/libs/bits"
cmtmath "github.com/KYVENetwork/celestia-core/libs/math"
"github.com/KYVENetwork/celestia-core/p2p"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
"github.com/gogo/protobuf/proto"
)
Expand Down
4 changes: 2 additions & 2 deletions consensus/msgs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/KYVENetwork/celestia-core/libs/bits"
cmtrand "github.com/KYVENetwork/celestia-core/libs/rand"
"github.com/KYVENetwork/celestia-core/p2p"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
4 changes: 2 additions & 2 deletions consensus/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"github.com/KYVENetwork/celestia-core/p2p"
"github.com/KYVENetwork/celestia-core/pkg/trace"
"github.com/KYVENetwork/celestia-core/pkg/trace/schema"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
cmttime "github.com/KYVENetwork/celestia-core/types/time"
Expand Down
4 changes: 2 additions & 2 deletions consensus/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (
mempoolv1 "github.com/KYVENetwork/celestia-core/mempool/v1"
"github.com/KYVENetwork/celestia-core/p2p"
p2pmock "github.com/KYVENetwork/celestia-core/p2p/mock"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
statemocks "github.com/KYVENetwork/celestia-core/state/mocks"
"github.com/KYVENetwork/celestia-core/store"
Expand Down
2 changes: 1 addition & 1 deletion consensus/replay_stubs.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
abci "github.com/KYVENetwork/celestia-core/abci/types"
"github.com/KYVENetwork/celestia-core/libs/clist"
mempl "github.com/KYVENetwork/celestia-core/mempool"
cmtstate "github.com/KYVENetwork/celestia-core/proto/tendermint/state"
cmtstate "github.com/KYVENetwork/celestia-core/proto/celestia-core/state"
"github.com/KYVENetwork/celestia-core/proxy"
"github.com/KYVENetwork/celestia-core/types"
)
Expand Down
6 changes: 3 additions & 3 deletions consensus/replay_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import (
cmtrand "github.com/KYVENetwork/celestia-core/libs/rand"
mempl "github.com/KYVENetwork/celestia-core/mempool"
"github.com/KYVENetwork/celestia-core/privval"
cmtstate "github.com/KYVENetwork/celestia-core/proto/tendermint/state"
cmtstore "github.com/KYVENetwork/celestia-core/proto/tendermint/store"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtstate "github.com/KYVENetwork/celestia-core/proto/celestia-core/state"
cmtstore "github.com/KYVENetwork/celestia-core/proto/celestia-core/store"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/proxy"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
2 changes: 1 addition & 1 deletion consensus/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/KYVENetwork/celestia-core/p2p"
"github.com/KYVENetwork/celestia-core/pkg/trace"
"github.com/KYVENetwork/celestia-core/pkg/trace/schema"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
cmttime "github.com/KYVENetwork/celestia-core/types/time"
Expand Down
2 changes: 1 addition & 1 deletion consensus/state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
cmtpubsub "github.com/KYVENetwork/celestia-core/libs/pubsub"
cmtrand "github.com/KYVENetwork/celestia-core/libs/rand"
p2pmock "github.com/KYVENetwork/celestia-core/p2p/mock"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
2 changes: 1 addition & 1 deletion consensus/types/height_vote_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
cmtjson "github.com/KYVENetwork/celestia-core/libs/json"
cmtmath "github.com/KYVENetwork/celestia-core/libs/math"
"github.com/KYVENetwork/celestia-core/p2p"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
)

Expand Down
2 changes: 1 addition & 1 deletion consensus/types/height_vote_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
cfg "github.com/KYVENetwork/celestia-core/config"
"github.com/KYVENetwork/celestia-core/crypto/tmhash"
cmtrand "github.com/KYVENetwork/celestia-core/libs/rand"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
cmttime "github.com/KYVENetwork/celestia-core/types/time"
)
Expand Down
2 changes: 1 addition & 1 deletion consensus/wal.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
cmtos "github.com/KYVENetwork/celestia-core/libs/os"
"github.com/KYVENetwork/celestia-core/libs/service"
cmtcons "github.com/KYVENetwork/celestia-core/proto/tendermint/consensus"
cmtcons "github.com/KYVENetwork/celestia-core/proto/celestia-core/consensus"
cmttime "github.com/KYVENetwork/celestia-core/types/time"
)

Expand Down
2 changes: 1 addition & 1 deletion crypto/encoding/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/KYVENetwork/celestia-core/crypto/ed25519"
"github.com/KYVENetwork/celestia-core/crypto/secp256k1"
"github.com/KYVENetwork/celestia-core/libs/json"
pc "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
pc "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion crypto/merkle/proof.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"

"github.com/KYVENetwork/celestia-core/crypto/tmhash"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion crypto/merkle/proof_op.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"fmt"

cmtcrypto "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

//----------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion crypto/merkle/proof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/KYVENetwork/celestia-core/crypto/tmhash"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

const ProofOpDomino = "test:domino"
Expand Down
2 changes: 1 addition & 1 deletion crypto/merkle/proof_value.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/KYVENetwork/celestia-core/crypto/tmhash"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/tendermint/crypto"
cmtcrypto "github.com/KYVENetwork/celestia-core/proto/celestia-core/crypto"
)

const ProofOpValue = "simple:v"
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/go-built-in.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ go build
CometBFT communicates with the application through the Application
BlockChain Interface (ABCI). The messages exchanged through the interface are
defined in the ABCI [protobuf
file](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/tendermint/abci/types.proto).
file](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/celestia-core/abci/types.proto).

We begin by creating the basic scaffolding for an ABCI application by
creating a new type, `KVStoreApplication`, which implements the
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ go build
CometBFT communicates with the application through the Application
BlockChain Interface (ABCI). The messages exchanged through the interface are
defined in the ABCI [protobuf
file](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/tendermint/abci/types.proto).
file](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/celestia-core/abci/types.proto).

We begin by creating the basic scaffolding for an ABCI application by
creating a new type, `KVStoreApplication`, which implements the
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ core to the application. The application replies with corresponding
response messages.

The messages are specified here: [ABCI Message
Types](https://github.com/KYVENetwork/celestia-core/blob/main/proto/tendermint/abci/types.proto).
Types](https://github.com/KYVENetwork/celestia-core/blob/main/proto/celestia-core/abci/types.proto).

The **DeliverTx** message is the work horse of the application. Each
transaction in the blockchain is delivered with this message. The
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/what-is-cometbft.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ core to the application. The application replies with corresponding
response messages.

The messages are specified here: [ABCI Message
Types](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/tendermint/abci/types.proto).
Types](https://github.com/KYVENetwork/celestia-core/blob/v0.34.x/proto/celestia-core/abci/types.proto).

The **DeliverTx** message is the work horse of the application. Each
transaction in the blockchain is delivered with this message. The
Expand Down
2 changes: 1 addition & 1 deletion evidence/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

clist "github.com/KYVENetwork/celestia-core/libs/clist"
"github.com/KYVENetwork/celestia-core/libs/log"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
)
Expand Down
2 changes: 1 addition & 1 deletion evidence/pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/KYVENetwork/celestia-core/evidence"
"github.com/KYVENetwork/celestia-core/evidence/mocks"
"github.com/KYVENetwork/celestia-core/libs/log"
cmtversion "github.com/KYVENetwork/celestia-core/proto/tendermint/version"
cmtversion "github.com/KYVENetwork/celestia-core/proto/celestia-core/version"
sm "github.com/KYVENetwork/celestia-core/state"
smmocks "github.com/KYVENetwork/celestia-core/state/mocks"
"github.com/KYVENetwork/celestia-core/store"
Expand Down
2 changes: 1 addition & 1 deletion evidence/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
clist "github.com/KYVENetwork/celestia-core/libs/clist"
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/p2p"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
"github.com/KYVENetwork/celestia-core/types"
"github.com/gogo/protobuf/proto"
)
Expand Down
2 changes: 1 addition & 1 deletion evidence/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/KYVENetwork/celestia-core/libs/log"
"github.com/KYVENetwork/celestia-core/p2p"
p2pmocks "github.com/KYVENetwork/celestia-core/p2p/mocks"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
sm "github.com/KYVENetwork/celestia-core/state"
"github.com/KYVENetwork/celestia-core/types"
)
Expand Down
4 changes: 2 additions & 2 deletions evidence/verify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/KYVENetwork/celestia-core/evidence"
"github.com/KYVENetwork/celestia-core/evidence/mocks"
"github.com/KYVENetwork/celestia-core/libs/log"
cmtproto "github.com/KYVENetwork/celestia-core/proto/tendermint/types"
cmtversion "github.com/KYVENetwork/celestia-core/proto/tendermint/version"
cmtproto "github.com/KYVENetwork/celestia-core/proto/celestia-core/types"
cmtversion "github.com/KYVENetwork/celestia-core/proto/celestia-core/version"
sm "github.com/KYVENetwork/celestia-core/state"
smmocks "github.com/KYVENetwork/celestia-core/state/mocks"
"github.com/KYVENetwork/celestia-core/types"
Expand Down
Loading

0 comments on commit 517413c

Please sign in to comment.