mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 13:31:10 +00:00
Fix tons of warnings in newest nightly (#2784)
* Fix tons of warnings in newest nightly * Fix sr-api-macro doc tests
This commit is contained in:
@@ -74,7 +74,7 @@ pub trait SystemApi<Hash, Number> {
|
||||
/// System API implementation
|
||||
pub struct System<B: traits::Block> {
|
||||
info: SystemInfo,
|
||||
sync: Arc<network::SyncProvider<B>>,
|
||||
sync: Arc<dyn network::SyncProvider<B>>,
|
||||
should_have_peers: bool,
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ impl<B: traits::Block> System<B> {
|
||||
/// Creates new `System` given the `SystemInfo`.
|
||||
pub fn new(
|
||||
info: SystemInfo,
|
||||
sync: Arc<network::SyncProvider<B>>,
|
||||
sync: Arc<dyn network::SyncProvider<B>>,
|
||||
should_have_peers: bool,
|
||||
) -> Self {
|
||||
System {
|
||||
|
||||
Reference in New Issue
Block a user