Skip to content

Commit 552be19

Browse files
committed
Upgrade jsonrpc dependency to v0.18.0
Upgrade to the latest released `jsonrpc` version.
1 parent d89ef37 commit 552be19

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ path = "src/lib.rs"
2222
bitcoincore-rpc-json = { version = "0.18.0", path = "../json" }
2323

2424
log = "0.4.5"
25-
jsonrpc = "0.14.0"
25+
jsonrpc = { version = "0.18.0", features = [] }
2626

2727
# Used for deserialization of JSON.
2828
serde = "1.0.156"

client/src/client.rs

+2-9
Original file line numberDiff line numberDiff line change
@@ -1320,15 +1320,8 @@ impl RpcApi for Client {
13201320
cmd: &str,
13211321
args: &[serde_json::Value],
13221322
) -> Result<T> {
1323-
let raw_args: Vec<_> = args
1324-
.iter()
1325-
.map(|a| {
1326-
let json_string = serde_json::to_string(a)?;
1327-
serde_json::value::RawValue::from_string(json_string) // we can't use to_raw_value here due to compat with Rust 1.29
1328-
})
1329-
.map(|a| a.map_err(|e| Error::Json(e)))
1330-
.collect::<Result<Vec<_>>>()?;
1331-
let req = self.client.build_request(&cmd, &raw_args);
1323+
let raw = serde_json::value::to_raw_value(args)?;
1324+
let req = self.client.build_request(&cmd, Some(&*raw));
13321325
if log_enabled!(Debug) {
13331326
debug!(target: "bitcoincore_rpc", "JSON-RPC request: {} {}", cmd, serde_json::Value::from(args));
13341327
}

0 commit comments

Comments
 (0)