generalizable data for peers in test network

This commit is contained in:
Robert Habermeier
2018-10-29 16:25:22 +01:00
parent 0302a1fc5e
commit 84925067f4
3 changed files with 29 additions and 20 deletions
+2 -2
View File
@@ -528,8 +528,8 @@ macro_rules! construct_simple_service {
/// // The first one is for the initializing the full import queue and the second for the
/// // light import queue.
/// ImportQueue = BasicQueue<Block, NoneVerifier>
/// { |_, _| Ok(BasicQueue::new(Arc::new(NoneVerifier {}))) }
/// { |_, _| Ok(BasicQueue::new(Arc::new(NoneVerifier {}))) },
/// { |_, client| Ok(BasicQueue::new(Arc::new(NoneVerifier {}, client))) }
/// { |_, client| Ok(BasicQueue::new(Arc::new(NoneVerifier {}, client))) },
/// }
/// }
/// ```