From 0a7fc2401d5a691787ff6c08ac9b698fc10b8912 Mon Sep 17 00:00:00 2001 From: Zeeshan Abid Date: Tue, 15 Aug 2023 14:26:52 +0100 Subject: [PATCH] feat: updated-membrane-proof-url --- client/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/main.rs b/client/src/main.rs index 2dd9aa6..7e00e8b 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -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(), } } @@ -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)