Skip to content

Commit

Permalink
Merge pull request #68 from Holo-Host/feat--updated-membrane-proof-url
Browse files Browse the repository at this point in the history
feat: updated-membrane-proof-url
  • Loading branch information
zo-el authored Aug 17, 2023
2 parents aedebe3 + 0a7fc24 commit 7a872ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn get_holoport_url(id: PublicKey) -> String {
fn mem_proof_server_url() -> String {
match env::var("MEM_PROOF_SERVER_URL") {
Ok(url) => url,
_ => "https://hbs.dev.holotest.net".to_string(),
_ => "https://membrane-proof.dev.holotest.net".to_string(),
}
}

Expand Down Expand Up @@ -218,7 +218,7 @@ async fn try_registration_auth(config: &Config, holochain_public_key: PublicKey)
role: "host".to_string(),
},
};
let mem_proof_server_url = format!("{}/registration/api/v1/membrane-proof", mem_proof_server_url());
let mem_proof_server_url = format!("{}/membrane-proof", mem_proof_server_url());
let resp = CLIENT
.post(mem_proof_server_url)
.json(&payload)
Expand Down

0 comments on commit 7a872ca

Please sign in to comment.