Skip to content

Commit

Permalink
Revert "Revert "chore: update blobscan api base url""
Browse files Browse the repository at this point in the history
This reverts commit c611107.
  • Loading branch information
PabloCastellano committed Mar 13, 2024
1 parent c611107 commit b1c7de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clients/blobscan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct Config {

impl BlobscanClient {
pub fn try_with_client(client: Client, config: Config) -> ClientResult<Self> {
let base_url = Url::parse(&format!("{}/api/", config.base_url))?;
let base_url = Url::parse(&format!("{}/", config.base_url))?;
let jwt_manager = JWTManager::new(JWTManagerConfig {
secret_key: config.secret_key,
refresh_interval: TimeDelta::try_hours(1).unwrap(),
Expand Down

0 comments on commit b1c7de9

Please sign in to comment.