Correct debug log for check_tx_key

This commit is contained in:
Daniel Karzel 2021-04-13 16:18:17 +10:00
parent ecebbb76b1
commit 6c4d72704a
No known key found for this signature in database
GPG Key ID: 30C3FC2E438ADB6E

View File

@ -279,7 +279,7 @@ impl Client {
.text()
.await?;
debug!("transfer RPC response: {}", response);
debug!("check_tx_key RPC response: {}", response);
let r = serde_json::from_str::<Response<CheckTxKey>>(&response)?;
Ok(r.result)