You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Why do we have to import `codec`, `scale-info` & `log` every-time even when it is in the umbrella crate?
Because they hardcoded some of those things in the frame-support's macros. Suggest changing those marcos usage to frame::codec instead of ::crate::codec/crate::codec.
codec and scale-info will not work that easily. These macros need to know the path to the crate and if the crate is not part of the Cargo.toml, they will not find them.
Because they hardcoded some of those things in the frame-support's macros. Suggest changing those marcos usage to
frame::codec
instead of::crate::codec
/crate::codec
.Originally posted by @AurevoirXavier in #6504 (comment)
The text was updated successfully, but these errors were encountered: