Fix case in type in macro generation (#4223)

Generated type is not camel case this generate some warnings from IDE

label should be R0
This commit is contained in:
gui
2024-04-20 17:20:35 +09:00
committed by GitHub
parent e504c41a5a
commit f3c3ebb6a9
@@ -244,7 +244,7 @@ fn construct_runtime_final_expansion(
// Prevent UncheckedExtrinsic to print unused warning. // Prevent UncheckedExtrinsic to print unused warning.
const _: () = { const _: () = {
#[allow(unused)] #[allow(unused)]
type __hidden_use_of_unchecked_extrinsic = #unchecked_extrinsic; type __HiddenUseOfUncheckedExtrinsic = #unchecked_extrinsic;
}; };
#[derive( #[derive(