mirror of
https://github.com/pezkuwichain/pezframe-metadata.git
synced 2026-04-26 00:17:56 +00:00
Remove FunctionArgumentMetadata::is_compact flag (#10)
This commit is contained in:
@@ -325,7 +325,6 @@ impl IntoPortable for FunctionMetadata {
|
|||||||
pub struct FunctionArgumentMetadata<T: Form = MetaForm> {
|
pub struct FunctionArgumentMetadata<T: Form = MetaForm> {
|
||||||
pub name: T::String,
|
pub name: T::String,
|
||||||
pub ty: T::Type,
|
pub ty: T::Type,
|
||||||
pub is_compact: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IntoPortable for FunctionArgumentMetadata {
|
impl IntoPortable for FunctionArgumentMetadata {
|
||||||
@@ -335,7 +334,6 @@ impl IntoPortable for FunctionArgumentMetadata {
|
|||||||
FunctionArgumentMetadata {
|
FunctionArgumentMetadata {
|
||||||
name: self.name.into_portable(registry),
|
name: self.name.into_portable(registry),
|
||||||
ty: registry.register_type(&self.ty),
|
ty: registry.register_type(&self.ty),
|
||||||
is_compact: self.is_compact,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user