Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38a4cae

Browse files
lasarojcthanethomson
andauthoredJan 23, 2023
main: replace tendermint/tendermint for cometbft/cometbft (celestiaorg#142)
* search and replace of tendermint/tendermint, ignoring legitimate links to the TM repo * search and replace of tendermint/tendermint, ignoring legitimate links to the TM repo, for tests * update the go.mod file * use informal's tm-db until cometbft-db releases * update Makefile to point to renamed repo * Use tm-load-test without circular dependency * updating mocks * placate linter * go mod tidy * debugging error in test * Fix org and repo in generated files * Fix org and repo in generated files * Fixing protobuf file descriptors with make proto-gen * Reverting changes in references to issues/PR * make proto-gen Signed-off-by: Thane Thomson <[email protected]> * Revert "make proto-gen" This reverts commit 87ed59743344599744b131231f2865f3588aafe0. * debug: Show git diff output when check-generated workflow fails Signed-off-by: Thane Thomson <[email protected]> * debug: Check protoc version in CI Signed-off-by: Thane Thomson <[email protected]> * Revert "debug: Check protoc version in CI" This reverts commit 17a0eb7cbd926fc286db03df94098ade517f2809. * debug: Try enforcing install of latest buf version Signed-off-by: Thane Thomson <[email protected]> * debug: Explicitly install cosmos/gogoproto v1.4.3 Signed-off-by: Thane Thomson <[email protected]> * Revert "debug: Explicitly install cosmos/gogoproto v1.4.3" This reverts commit 34eeb25587929e08723d6d6ded0ebefdaeec7272. Signed-off-by: Thane Thomson <[email protected]> Co-authored-by: Thane Thomson <[email protected]>
1 parent a36697d commit 38a4cae

File tree

535 files changed

+2777
-2770
lines changed

Some content is hidden

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

535 files changed

+2777
-2770
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OUTPUT?=$(BUILDDIR)/cometbft
55
BUILD_TAGS?=cometbft
66

77
COMMIT_HASH := $(shell git rev-parse --short HEAD)
8-
LD_FLAGS = -X github.com/tendermint/tendermint/version.TMGitCommitHash=$(COMMIT_HASH)
8+
LD_FLAGS = -X github.com/cometbft/cometbft/version.TMGitCommitHash=$(COMMIT_HASH)
99
BUILD_FLAGS = -mod=readonly -ldflags "$(LD_FLAGS)"
1010
HTTPS_GIT := https://github.com/cometbft/cometbft.git
1111
CGO_ENABLED ?= 0

‎abci/client/client.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"fmt"
55
"sync"
66

7-
"github.com/tendermint/tendermint/abci/types"
8-
"github.com/tendermint/tendermint/libs/service"
9-
cmtsync "github.com/tendermint/tendermint/libs/sync"
7+
"github.com/cometbft/cometbft/abci/types"
8+
"github.com/cometbft/cometbft/libs/service"
9+
cmtsync "github.com/cometbft/cometbft/libs/sync"
1010
)
1111

1212
const (

0 commit comments

Comments
 (0)
Please sign in to comment.