mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
Remove Mutex from core-service (#2961)
* Remove `Mutex` from `core-service` * Fixes sync test
This commit is contained in:
@@ -281,7 +281,6 @@ impl<C: Components> OffchainWorker<Self> for C where
|
||||
pub trait ServiceTrait<C: Components>:
|
||||
Deref<Target = Service<C>>
|
||||
+ Send
|
||||
+ Sync
|
||||
+ 'static
|
||||
+ StartRPC<C>
|
||||
+ MaintainTransactionPool<C>
|
||||
@@ -290,7 +289,6 @@ pub trait ServiceTrait<C: Components>:
|
||||
impl<C: Components, T> ServiceTrait<C> for T where
|
||||
T: Deref<Target = Service<C>>
|
||||
+ Send
|
||||
+ Sync
|
||||
+ 'static
|
||||
+ StartRPC<C>
|
||||
+ MaintainTransactionPool<C>
|
||||
|
||||
Reference in New Issue
Block a user