From ebde96caf5bf24a626d7de247724a599f106284f Mon Sep 17 00:00:00 2001
From: Sebastian Kunert <skunert49@gmail.com>
Date: Tue, 21 Jan 2025 17:33:47 +0100
Subject: [PATCH] Fix link-checker job (#7261)

Link-checker job is constantly failing because of these two links.

In the browser there is a redirect, apparently our lychee checker can't
handle it.
---
 polkadot/node/gum/proc-macro/src/lib.rs   | 2 +-
 substrate/frame/contracts/src/schedule.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/polkadot/node/gum/proc-macro/src/lib.rs b/polkadot/node/gum/proc-macro/src/lib.rs
index e8b6b599172..96ff4417a5a 100644
--- a/polkadot/node/gum/proc-macro/src/lib.rs
+++ b/polkadot/node/gum/proc-macro/src/lib.rs
@@ -90,7 +90,7 @@ pub(crate) fn gum(item: proc_macro::TokenStream, level: Level) -> proc_macro::To
 		.add_comment("Generated overseer code by `gum::warn!(..)`".to_owned())
 		// `dry=true` until rust-analyzer can selectively disable features so it's
 		// not all red squiggles. Originally: `!cfg!(feature = "expand")`
-		// ISSUE: <https://github.com/rust-analyzer/rust-analyzer/issues/11777>
+		// ISSUE: https://github.com/rust-lang/rust-analyzer/issues/11777
 		.dry(true)
 		.verbose(false)
 		.fmt(expander::Edition::_2021)
diff --git a/substrate/frame/contracts/src/schedule.rs b/substrate/frame/contracts/src/schedule.rs
index 80b8c54b1e1..285184280fc 100644
--- a/substrate/frame/contracts/src/schedule.rs
+++ b/substrate/frame/contracts/src/schedule.rs
@@ -114,7 +114,7 @@ impl Limits {
 #[scale_info(skip_type_params(T))]
 pub struct InstructionWeights<T: Config> {
 	/// Base instruction `ref_time` Weight.
-	/// Should match to wasmi's `1` fuel (see <https://github.com/paritytech/wasmi/issues/701>).
+	/// Should match to wasmi's `1` fuel (see <https://github.com/wasmi-labs/wasmi/issues/701>).
 	pub base: u32,
 	/// The type parameter is used in the default implementation.
 	#[codec(skip)]
-- 
GitLab