We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cc026b commit 7302c8cCopy full SHA for 7302c8c
lightning-block-sync/src/poll.rs
@@ -170,12 +170,12 @@ mod sealed {
170
///
171
/// Other `Poll` implementations should be built using `ChainPoller` as it provides the simplest way
172
/// of validating chain data and checking consistency.
173
-pub struct ChainPoller<B: DerefMut<Target=T> + Sized , T: BlockSource> {
+pub struct ChainPoller<B: DerefMut<Target=T> + Sized, T: BlockSource> {
174
block_source: B,
175
network: Network,
176
}
177
178
-impl<B: DerefMut<Target=T> + Sized , T: BlockSource> ChainPoller<B, T> {
+impl<B: DerefMut<Target=T> + Sized, T: BlockSource> ChainPoller<B, T> {
179
/// Creates a new poller for the given block source.
180
181
/// If the `network` parameter is mainnet, then the difficulty between blocks is checked for
0 commit comments