From 1b19e1b18ea2c79e377b59bc83cdd08ff195a951 Mon Sep 17 00:00:00 2001 From: ashraffouda Date: Wed, 15 Jul 2026 13:58:16 +0200 Subject: [PATCH] Repoint tfchain git dependency -> ledger_chain (repo renamed) github.com/threefoldtech/tfchain was renamed to ledger_chain. Update the tfchain-client git dependency URL in Cargo.toml and Cargo.lock to point at the new name (same development branch + pinned commit exist on ledger_chain), removing the dependency on GitHub's non-permanent rename redirect. Co-Authored-By: Claude Opus 4.8 (1M context) --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a83cf2..b59b498 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5921,7 +5921,7 @@ dependencies = [ [[package]] name = "tfchain-client" version = "0.2.0" -source = "git+https://github.com/threefoldtech/tfchain.git?branch=development#0f66e0c303ffc7b102f5d3f975459f7020cb76a0" +source = "git+https://github.com/threefoldtech/ledger_chain.git?branch=development#0f66e0c303ffc7b102f5d3f975459f7020cb76a0" dependencies = [ "frame-metadata", "frame-support", diff --git a/Cargo.toml b/Cargo.toml index 9654e82..8c42e73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ hyper-tungstenite = "0.14" lazy_static = "1.4.0" prometheus = { version = "0.13", features = ["process"] } -tfchain-client = { git = "https://github.com/threefoldtech/tfchain.git", version = "0.2.0", branch = "development" } +tfchain-client = { git = "https://github.com/threefoldtech/ledger_chain.git", version = "0.2.0", branch = "development" } reqwest = "0.12" bytes = "1"