fix: Fix testnet cutoff block

This commit is contained in:
sprites0
2025-04-24 07:47:14 +00:00
parent 7c130d62fd
commit 6e97ed0160

View File

@ -10,7 +10,7 @@ use std::fs::File;
use std::io::{Read, Write};
pub(crate) fn load_hl_testnet() -> ChainSpec {
const TESTNET_GENESIS_URL: &str = "https://raw.githubusercontent.com/sprites0/hl-testnet-genesis/main/21043587.rlp";
const TESTNET_GENESIS_URL: &str = "https://raw.githubusercontent.com/sprites0/hl-testnet-genesis/main/21304281.rlp";
fn download_testnet_genesis() -> Result<&'static str, Box<dyn std::error::Error>> {
let path = "/tmp/hl_testnet.rmp.lz4";