-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR: change okchain to okexchain (#328)
* change okchaincli to okexchaincli & okchaind to okexchaind * update .circleci * update Makefile * change address prefix * fix address checksum failed * change okchain package to okexchain package * update go.mod * change okchain to okexchain * fix-operator-address * bump to: github.com/okex/cosmos-sdk v0.37.9-okchain11 github.com/okex/tendermint v0.32.10-okchain2 * update tags to okexchain Co-authored-by: meng <[email protected]> Co-authored-by: Zhong Qiu <[email protected]> Co-authored-by: zhongqiuwood <[email protected]>
- Loading branch information
1 parent
8fee18b
commit 7d194c4
Showing
378 changed files
with
1,103 additions
and
1,062 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,8 @@ Contributing to this repo can mean many things such as participated in | |
discussion or proposing code changes. To ensure a smooth workflow for all | ||
contributors, the general procedure for contributing has been established: | ||
|
||
1. Either [open](https://github.com/okex/okchain/issues/new/choose) or | ||
[find](https://github.com/okex/okchain/issues) an issue you'd like to help with | ||
1. Either [open](https://github.com/okex/okexchain/issues/new/choose) or | ||
[find](https://github.com/okex/okexchain/issues) an issue you'd like to help with | ||
2. Participate in thoughtful discussion on that issue | ||
3. If you would like to contribute: | ||
1. If a the issue is a proposal, ensure that the proposal has been accepted | ||
|
@@ -54,7 +54,7 @@ tools` for installing the linting tools. | |
|
||
Other notes: | ||
- Looking for a good place to start contributing? How about checking out some | ||
[good first issues](https://github.com/okex/okchain/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) | ||
[good first issues](https://github.com/okex/okexchain/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) | ||
- Please make sure to use `gofmt` before every commit - the easiest way to do | ||
this is have your editor run it for you upon saving a file. Additionally | ||
please ensure that your code is lint compliant by running `make lint` | ||
|
@@ -95,12 +95,12 @@ Please note that Go requires code to live under absolute paths, which complicate | |
While my fork lives at `https://github.com/rigeyrigerige/OKChain`, | ||
the code should never exist at `$GOPATH/src/github.com/rigeyrigerige/OKChain`. | ||
Instead, we use `git remote` to add the fork as a new remote for the original repo, | ||
`$GOPATH/src/github.com/okex/okchain `, and do all the work there. | ||
`$GOPATH/src/github.com/okex/okexchain `, and do all the work there. | ||
|
||
For instance, to create a fork and work on a branch of it, I would: | ||
|
||
- Create the fork on github, using the fork button. | ||
- Go to the original repo checked out locally (i.e. `$GOPATH/src/github.com/okex/okchain`) | ||
- Go to the original repo checked out locally (i.e. `$GOPATH/src/github.com/okex/okexchain`) | ||
- `git remote rename origin upstream` | ||
- `git remote add origin [email protected]:rigeyrigerige/OKChain.git` | ||
|
||
|
@@ -180,7 +180,7 @@ only pull requests targeted directly against master. | |
- `master` must never fail `make test` or `make test_cli` | ||
- `master` should not fail `make lint` | ||
- no `--force` onto `master` (except when reverting a broken commit, which should seldom happen) | ||
- create a development branch either on github.com/okex/okchain, or your fork (using `git remote add origin`) | ||
- create a development branch either on github.com/okex/okexchain, or your fork (using `git remote add origin`) | ||
- before submitting a pull request, begin `git rebase` on top of `master` | ||
### Pull Merge Procedure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package app | ||
|
||
import ( | ||
"github.com/okex/okchain/app/protocol" | ||
"github.com/okex/okexchain/app/protocol" | ||
) | ||
|
||
var ( | ||
// MakeCodec is the function alias for codec maker | ||
MakeCodec = protocol.MakeCodec | ||
// ModuleBasics is the variable alias for NewBasicManager | ||
ModuleBasics = protocol.ModuleBasics | ||
// DefaultCLIHome is the directory for okchaincli | ||
// DefaultCLIHome is the directory for okexchaincli | ||
DefaultCLIHome = protocol.DefaultCLIHome | ||
// DefaultNodeHome is the directory for okchaind | ||
// DefaultNodeHome is the directory for okexchaind | ||
DefaultNodeHome = protocol.DefaultNodeHome | ||
) |
Oops, something went wrong.