--- a/runtime/common/src/types.rs +++ b/runtime/common/src/types.rs @@ -43,10 +43,14 @@ pub trait RuntimeInstance { type CrossAccountId: pallet_common::account::CrossAccountId - + Send + Sync + 'static; + + Send + + Sync + + 'static; type TransactionConverter: fp_rpc::ConvertTransaction - + Send + Sync + 'static; + + Send + + Sync + + 'static; fn get_transaction_converter() -> Self::TransactionConverter; }