From 051dcddd1a0bf086ec8267bb83d0198294202611 Mon Sep 17 00:00:00 2001 From: Giuseppe Re Date: Fri, 17 Jan 2025 10:11:11 +0100 Subject: [PATCH] Update substrate/frame/support/src/traits/view_function.rs Co-authored-by: Guillaume Thiolliere --- substrate/frame/support/src/traits/view_function.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/substrate/frame/support/src/traits/view_function.rs b/substrate/frame/support/src/traits/view_function.rs index d40b901f7285..749ff5326c82 100644 --- a/substrate/frame/support/src/traits/view_function.rs +++ b/substrate/frame/support/src/traits/view_function.rs @@ -43,6 +43,7 @@ pub trait ViewFunctionIdPrefix { fn prefix() -> [u8; 16]; } +/// Automatically implemented for each pallet view function method by the macro [`pallet`](crate::pallet). pub trait ViewFunctionIdSuffix { const SUFFIX: [u8; 16]; }