Skip to content

Commit

Permalink
Fix case in type in macro generation (#4223)
Browse files Browse the repository at this point in the history
Generated type is not camel case this generate some warnings from IDE

label should be R0
  • Loading branch information
gui1117 authored Apr 20, 2024
1 parent e504c41 commit f3c3ebb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit f3c3ebb

Please sign in to comment.