We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aed00e8 commit 792f942Copy full SHA for 792f942
crates/common/src/commit/client.rs
@@ -51,7 +51,7 @@ impl SignerClient {
51
/// requested.
52
// TODO: add more docs on how proxy keys work
53
pub async fn get_pubkeys(&self) -> Result<GetPubkeysResponse, SignerClientError> {
54
- let res = self.client.get(&format!("{}{}", self.url, GET_PUBKEYS_PATH)).send().await?;
+ let res = self.client.get(format!("{}{}", self.url, GET_PUBKEYS_PATH)).send().await?;
55
56
if !res.status().is_success() {
57
return Err(SignerClientError::FailedRequest {
0 commit comments