Skip to content

Commit

Permalink
a couple more max_value -> MAX
Browse files Browse the repository at this point in the history
  • Loading branch information
realbigsean committed Jun 13, 2024
1 parent ad9d681 commit 807fe7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watch/src/blockprint/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub struct BlockprintResponse {
}

impl WatchBlockprintClient {
async fn get(&self, url: Url) -> Result<Response, Error> {
pub async fn get(&self, url: Url) -> Result<Response, Error> {
let mut builder = self.client.get(url).timeout(TIMEOUT);
if let Some(username) = &self.username {
builder = builder.basic_auth(username, self.password.as_ref());
Expand Down

0 comments on commit 807fe7c

Please sign in to comment.