We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c948b95 commit b62988fCopy full SHA for b62988f
frame-metadata/src/v15.rs
@@ -91,8 +91,6 @@ impl RuntimeMetadataV15 {
91
pub struct TraitMetadata<T: Form = MetaForm> {
92
/// Trait name.
93
pub name: T::String,
94
- /// Trait version.
95
- pub version: Option<u64>,
96
/// Trait methods.
97
pub methods: Vec<MethodMetadata<T>>,
98
/// Trait documentation.
@@ -105,7 +103,6 @@ impl IntoPortable for TraitMetadata {
105
103
fn into_portable(self, registry: &mut Registry) -> Self::Output {
106
104
TraitMetadata {
107
name: self.name.into_portable(registry),
108
- version: self.version,
109
methods: registry.map_into_portable(self.methods),
110
docs: registry.map_into_portable(self.docs),
111
}
0 commit comments