From bbde75e8eb37d90b31d4b289bc9f0085f4877697 Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Fri, 26 Nov 2021 00:49:51 -0800 Subject: [PATCH] Update W3F URL links (#4376) --- polkadot/runtime/common/src/lib.rs | 2 +- polkadot/runtime/parachains/src/reward_points.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot/runtime/common/src/lib.rs b/polkadot/runtime/common/src/lib.rs index ac32b64f85..93a24ab60e 100644 --- a/polkadot/runtime/common/src/lib.rs +++ b/polkadot/runtime/common/src/lib.rs @@ -114,7 +114,7 @@ parameter_types! { } /// Parameterized slow adjusting fee updated based on -/// https://w3f-research.readthedocs.io/en/latest/polkadot/Token%20Economics.html#-2.-slow-adjusting-mechanism +/// https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html#-2.-slow-adjusting-mechanism pub type SlowAdjustingFeeUpdate = TargetedFeeAdjustment; diff --git a/polkadot/runtime/parachains/src/reward_points.rs b/polkadot/runtime/parachains/src/reward_points.rs index 1f593e6490..3a68ff4710 100644 --- a/polkadot/runtime/parachains/src/reward_points.rs +++ b/polkadot/runtime/parachains/src/reward_points.rs @@ -17,7 +17,7 @@ //! An implementation of the `RewardValidators` trait used by `inclusion` that employs //! `pallet-staking` to compute the rewards. //! -//! Based on https://w3f-research.readthedocs.io/en/latest/polkadot/Token%20Economics.html +//! Based on https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html //! which doesn't currently mention availability bitfields. As such, we don't reward them //! for the time being, although we will build schemes to do so in the future.