From 94404aef2bf18a139b1412fdc07828105c37d7c5 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Tue, 11 Feb 2020 00:27:38 +0100 Subject: [PATCH] Canister IDs are uucaused hex --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a7c87c..458b5f2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ docker run \ Open the canister frontend in your web browser. ```bash -ID=$(xxd -p canisters/profile/_canister.id) +ID=$(xxd -u -p canisters/profile/_canister.id) CRC=$(python2 -c "import crc8;h=crc8.crc8();h.update('$ID'.decode('hex'));print(h.hexdigest())") xdg-open "http://127.0.0.1:8000/?canisterId=ic:$ID$CRC" ```