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

build(deps): Bump prismjs from 1.23.0 to 1.25.0 in /docs #334

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
28bebe3
docs/tutorials: fix sample code #6186
mergify[bot] Mar 1, 2021
52b1d90
rpc/jsonrpc: Unmarshal RPCRequest correctly (bp #6191) (#6193)
mergify[bot] Mar 2, 2021
a047a4a
logs: cleanup (#6198)
mergify[bot] Mar 4, 2021
1b5697a
mempool/rpc: log grooming (bp #6201) (#6203)
mergify[bot] Mar 4, 2021
b9cdd0e
indexer: remove info log (#6194)
mergify[bot] Mar 4, 2021
277ad4a
Merge pull request #195 from line/v0.34.x
Mar 5, 2021
dddf7ea
feat: more prometheus metrics for monitoring performance (#146) (#175)
Mar 4, 2021
0bd87be
chore: config timeout and connection pool (#150) (#171)
wetcod Feb 3, 2021
ef06e93
Merge pull request #198 from line/egon/merge_linemint
Mar 9, 2021
2a1f43c
chore: modify module path (#199)
Mar 15, 2021
5fea666
chore: adopt `line/tm-db/v2` and `line/iavl/v2` (#200)
jinsan-line Mar 16, 2021
c7c246b
chore: bump up tm-db and iavl (#201)
jinsan-line Mar 25, 2021
2b5e16c
chore: rename binary file to ostracon (#206)
Apr 2, 2021
4bc528a
build: fixing building in docker container (#208)
Apr 5, 2021
4183d64
chore: use default db backend among the available ones (#212)
Apr 6, 2021
afe46e5
feat: concurrent checkTx (#213)
Apr 9, 2021
e772f8b
chore: remove abci socket implementation (#214)
jinsan-line Apr 15, 2021
636b019
test: grpc_client_test and fix grpc_client StopForError() hang bug (#…
jinsan-line Apr 16, 2021
89413eb
chore: remove abci flush() (#216)
jinsan-line Apr 16, 2021
f79764f
chore: remove mempool.postCheck (#158) (#217)
jinsan-line Apr 16, 2021
4de81da
chore: bump up tm-db (#218)
jinsan-line Apr 16, 2021
5254cab
fix: revise to call Begin/EndRecheck even though mem.Size() is 0 (#219)
jinsan-line Apr 19, 2021
25d9ece
feat: concurrent recheckTx (#163) (#221)
jinsan-line Apr 27, 2021
b9f0112
chore: increase the value of maxPerPage (#223)
wetcod Apr 27, 2021
0cd77f8
chore: fix the type of consensus_block_interval_seconds from histogra…
wetcod Apr 27, 2021
4750c7b
feat: impl checkTxAsyncReactor() (#168) (#225)
jinsan-line Apr 28, 2021
e5495ce
chore: revise abci.Client, Async() interfaces (#169) (#226)
jinsan-line Apr 29, 2021
ef4fe0a
chore: remove iavl dependency (#228)
Apr 29, 2021
fcf6e59
feat: add metric for measuring performance (#229)
May 6, 2021
6c7ab05
build: remove needless build tag `!libsecp256k1` (#246)
May 12, 2021
2e4c6dd
feat: add duration metrics of gauge type (#256)
May 17, 2021
b6eb70f
feat: async reactor receiving (#261)
brew0722 May 27, 2021
2b37f36
added extra timing info regarding block generation
iproudhon May 14, 2021
78d994c
reformat to keep lint happy
iproudhon Jun 4, 2021
83b433c
Merge pull request #265 from line/iproudhon/ebony
iproudhon Jun 4, 2021
19aab99
perf: optimize checking the txs size (#264)
wetcod Jun 4, 2021
a52812a
perf: do not flush wal when receive consensus msgs (#273)
wetcod Jun 10, 2021
9eea703
build(deps): Bump prismjs from 1.23.0 to 1.25.0 in /docs
dependabot[bot] Oct 13, 2021
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
chore: remove abci socket implementation (#214)
* chore: remove abci socket implementation (#153)

# Conflicts:
#	abci/client/socket_client.go
#	abci/client/socket_client_test.go
#	abci/example/example_test.go
#	abci/example/kvstore/kvstore_test.go
#	abci/server/socket_server.go
#	config/config.go
#	test/app/test.sh

* fix: make test

* fix: test/app/test.sh

* fix: typo

* chore: revise OSTHOME path

* fix: ostracon home path in clean.sh
  • Loading branch information
jinsan-line authored Apr 15, 2021
commit e772f8b4cdf1332e42eb0fbf9c60faf7598b84d8
4 changes: 1 addition & 3 deletions abci/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,9 @@ type Client interface {
//----------------------------------------

// NewClient returns a new ABCI client of the specified transport type.
// It returns an error if the transport is not "socket" or "grpc"
// It returns an error if the transport is not "grpc"
func NewClient(addr, transport string, mustConnect bool) (client Client, err error) {
switch transport {
case "socket":
client = NewSocketClient(addr, mustConnect)
case "grpc":
client = NewGRPCClient(addr, mustConnect)
default:
Expand Down
Loading