Skip to content

Commit 2a1610c

Browse files
committed
Update jsonrpc with the fixes on race condition on wait()
The fix (paritytech/jsonrpc#504) has been merged to `master`. It'll take times to relase, so use the merged master directly.
1 parent df1bb22 commit 2a1610c

File tree

3 files changed

+43
-43
lines changed

3 files changed

+43
-43
lines changed

Cargo.lock

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ rustc-hex = "1.0"
3333
rustc-serialize = "0.3"
3434
time = "0.1"
3535
tokio-core = "0.1.17"
36-
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
37-
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
38-
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
39-
jsonrpc-ipc-server = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
40-
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
36+
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
37+
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
38+
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
39+
jsonrpc-ipc-server = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
40+
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }

stratum/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ authors = ["Parity Technologies <[email protected]>", "CodeChain Team <hi@codechai
99
codechain-crypto = { git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.1" }
1010
codechain-logger = { path = "../util/logger" }
1111
codechain-json = { path = "../json" }
12-
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
13-
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
14-
jsonrpc-tcp-server = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.0" }
12+
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
13+
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
14+
jsonrpc-tcp-server = { git = "https://github.com/paritytech/jsonrpc.git", rev = "d1993a8" }
1515
log = "0.4.6"
1616
parking_lot = "0.6.0"
1717
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }

0 commit comments

Comments
 (0)