From fb2bd249cc5655a45f1f5f31b7311c6a50f9faa5 Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Sat, 28 May 2022 17:10:56 +0200 Subject: [PATCH] Update checkpoints URL --- lib/src/lightclient/checkpoints.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/lightclient/checkpoints.rs b/lib/src/lightclient/checkpoints.rs index 701f41b..9a9fb1b 100644 --- a/lib/src/lightclient/checkpoints.rs +++ b/lib/src/lightclient/checkpoints.rs @@ -25,7 +25,7 @@ pub fn get_closest_checkpoint(chain_name: &str, coin_type: u32, height: u64) -> let mut checkpoints: Vec<(u64, String, String)> = Vec::new(); - let cps = match reqwest::blocking::get("https://raw.githubusercontent.com/piratenetwork/piratewallet-light-cli/master/coin-checkpoint.json") { + let cps = match reqwest::blocking::get("https://raw.githubusercontent.com/CalDescent1/piratewallet-light-cli/p2sh/coin-checkpoint.json") { Ok(s) => { match s.json::() { Ok(j) => Some(j),