Skip to content

Commit

Permalink
Fix issuer origin (#6100)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Jul 23, 2024
1 parent 36897b8 commit bdd964a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/libraries/proof_of_unique_personhood/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use ic_verifiable_credentials::VcFlowSigners;
use types::{CanisterId, TimestampMillis, UniquePersonProof, UniquePersonProofProvider};

const ISSUER_CANISTER_ID: CanisterId = CanisterId::from_slice(&[0, 0, 0, 0, 0, 240, 24, 173, 1, 1]);
const ISSUER_ORIGIN: &str = "https://id.decideai.xyz";
const ISSUER_ORIGIN: &str = "https://id.decideai.xyz/";
const NANOS_PER_MILLISECOND: u64 = 1_000_000;

pub fn verify_proof_of_unique_personhood(
Expand Down

0 comments on commit bdd964a

Please sign in to comment.