Skip to content
Snippets Groups Projects
Unverified Commit f3c3ebb6 authored by thiolliere's avatar thiolliere Committed by GitHub
Browse files

Fix case in type in macro generation (#4223)

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

label should be R0
parent e504c41a
No related merge requests found
Pipeline #467741 passed with warnings with stages
in 45 minutes and 23 seconds
......@@ -244,7 +244,7 @@ fn construct_runtime_final_expansion(
// Prevent UncheckedExtrinsic to print unused warning.
const _: () = {
#[allow(unused)]
type __hidden_use_of_unchecked_extrinsic = #unchecked_extrinsic;
type __HiddenUseOfUncheckedExtrinsic = #unchecked_extrinsic;
};
#[derive(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment