mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
Silence the deprecated warning in generated code (#2513)
`impl_runtime_apis!` is not only implementing the apis, it also calls them internally and thus generates the warning. So, we just allow depracted calls in the generated code.
This commit is contained in:
committed by
Gavin Wood
parent
57164aa747
commit
e67b653c85
@@ -82,6 +82,7 @@ fn generate_impl_call(
|
||||
};
|
||||
)*
|
||||
|
||||
#[allow(deprecated)]
|
||||
let output = <#runtime as #impl_trait>::#fn_name(#( #pborrow #pnames2 ),*);
|
||||
#c::runtime_api::Encode::encode(&output)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user