Reduce allocations (#30693)

Removes a unnecessary string conversion and some clones

Release Notes:

- N/A
This commit is contained in:
tidely 2025-05-14 19:29:28 +03:00 committed by GitHub
parent fcfe4e2c14
commit bc99a86bb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 48 additions and 57 deletions

View file

@ -134,7 +134,7 @@ impl From<ErrorCode> for anyhow::Error {
RpcError {
request: None,
code: value,
msg: format!("{:?}", value).to_string(),
msg: format!("{:?}", value),
tags: Default::default(),
}
.into()
@ -241,7 +241,7 @@ impl From<ErrorCode> for RpcError {
RpcError {
request: None,
code,
msg: format!("{:?}", code).to_string(),
msg: format!("{:?}", code),
tags: Default::default(),
}
}