From 807fe7cae9df4c3349fc9993499139404c838455 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Thu, 13 Jun 2024 17:54:49 -0400 Subject: [PATCH] a couple more max_value -> MAX --- watch/src/blockprint/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch/src/blockprint/mod.rs b/watch/src/blockprint/mod.rs index 532776f425..89a813b9ff 100644 --- a/watch/src/blockprint/mod.rs +++ b/watch/src/blockprint/mod.rs @@ -64,7 +64,7 @@ pub struct BlockprintResponse { } impl WatchBlockprintClient { - async fn get(&self, url: Url) -> Result { + pub async fn get(&self, url: Url) -> Result { let mut builder = self.client.get(url).timeout(TIMEOUT); if let Some(username) = &self.username { builder = builder.basic_auth(username, self.password.as_ref());