update checkpoints

This commit is contained in:
Cryptoforge
2021-03-04 11:24:21 -08:00
parent e0ca959796
commit 62dc6852b3
2 changed files with 1 additions and 127 deletions

View File

@@ -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/zerocurrencycoin/zerowallet-light-cli/merge_upstream/coin-checkpoint.json") {
let cps = match reqwest::blocking::get("https://raw.githubusercontent.com/piratenetwork/piratewallet-light-cli/merge_upstream/coin-checkpoint.json") {
Ok(s) => {
match s.json::<CoinList>() {
Ok(j) => Some(j),