Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: replace a some same proto message to Tendermint #546

Merged
merged 27 commits into from
Feb 1, 2023
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
45bef51
chore: remove otracon/libs/bits
zemyblue Jan 6, 2023
413b59e
feat: clean up `proto/ostracon/p2p/` directory protos
zemyblue Jan 6, 2023
7235ef1
feat: clean up `proto/ostracon/store/` directory proto
zemyblue Jan 6, 2023
89527e3
feat: clean up `crypto`, `mempool` and `statesync` directory proto
zemyblue Jan 6, 2023
9e23a22
feat: clean up `proto/ostracon/crypto` directory proto
zemyblue Jan 6, 2023
0b02c87
feat: clean up `proto/ostracon/version` directory proto
zemyblue Jan 6, 2023
051dc7f
feat: clean up `proto/ostracon/types` proto directory
zemyblue Jan 6, 2023
db4a266
feat: clean up `proto/ostracon/state` proto directory
zemyblue Jan 6, 2023
86c84be
feat: clean up `proto/ostracon/blockchain` proto directory
zemyblue Jan 6, 2023
fbe0cfe
feat: clean up `proto/ostracon/privval` proto directory
zemyblue Jan 6, 2023
29ca21d
feat: clean up `proto/ostracon/abci` proto directory
zemyblue Jan 6, 2023
3f3c9b7
chore: change import alias
zemyblue Jan 10, 2023
02f81a9
feat: clean up the `PublicKey` of `ostracon/crypto/keys` message and …
zemyblue Jan 23, 2023
3668c26
feat!: replace `types.validator.proto` to Tendermint proto
zemyblue Jan 25, 2023
0bc4c6f
feat!: replace `abci/types.proto` and `state/types.proto` to Tendermi…
zemyblue Jan 25, 2023
faf3811
feat!: replace `privval/types.proto` and `types/types.proto` to Tende…
zemyblue Jan 25, 2023
27e06e6
feat!: replace `abci/types.proto` to Tendermint proto.
zemyblue Jan 25, 2023
0477a75
chore: remove commented out proto message
zemyblue Jan 25, 2023
93d0293
chore: fix proto lint error.
zemyblue Jan 25, 2023
c545fd0
chore: apply proto-format
zemyblue Jan 25, 2023
2142b2a
Merge branch 'main' into change_proto_path3
zemyblue Jan 26, 2023
2ab8ad1
chore: modify import alias to reduce the difference previous codes.
zemyblue Jan 27, 2023
6228cf2
chore: modify import alias to reduce the difference previous codes.
zemyblue Jan 27, 2023
167616b
Update abci/client/local_client.go
zemyblue Jan 30, 2023
ad02e74
Update mempool/clist_mempool_test.go
zemyblue Jan 30, 2023
d56b882
chore: merge the changes of main branch
zemyblue Jan 31, 2023
2b1fa41
chore: change import alias of `ocprivvalproto` and `tmprivvalproto`
zemyblue Jan 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update abci/client/local_client.go
Apply feed-back

Co-authored-by: Toshimasa Nasu <toshimasa_nasu@hotmail.com>
  • Loading branch information
zemyblue and tnasu authored Jan 30, 2023
commit 167616bc56b20e9b498fded7f48d26a86f64266c
2 changes: 1 addition & 1 deletion abci/client/local_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type localClient struct {

// TODO: remove `mtx` to increase concurrency. We could remove it because the app should protect itself.
mtx *tmsync.Mutex
// CONTRACT: The application should protect itself from concurrency as an ocabci server.
// CONTRACT: The application should protect itself from concurrency as an abci server.
ocabci.Application

globalCbMtx tmsync.Mutex
Expand Down