From dfefa163f8fbd4b83874ea9fa4d3bc8eecba5f30 Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres Date: Fri, 5 Feb 2021 14:51:22 +0100 Subject: [PATCH] CheckSpecVersion reference fix (#8056) * CheckSpecVersion reference fix * Update frame/example/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Guillaume Thiolliere Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> --- substrate/frame/example/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/substrate/frame/example/src/lib.rs b/substrate/frame/example/src/lib.rs index 05526d2c7a..cfb72a5c15 100644 --- a/substrate/frame/example/src/lib.rs +++ b/substrate/frame/example/src/lib.rs @@ -577,7 +577,8 @@ impl Module { // // Note that a signed extension can also indicate that a particular data must be present in the // _signing payload_ of a transaction by providing an implementation for the `additional_signed` -// method. This example will not cover this type of extension. See `CheckRuntime` in FRAME System +// method. This example will not cover this type of extension. See `CheckSpecVersion` in +// [FRAME System](https://github.com/paritytech/substrate/tree/master/frame/system#signed-extensions) // for an example. // // Using the extension, you can add some hooks to the life cycle of each transaction. Note that by