File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
hermes/crates/cardano-chain-follower/src Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -137,9 +137,7 @@ impl Reader {
137137 pub async fn read_block_range < P > (
138138 & mut self , _from : Point , _to : P ,
139139 ) -> Result < Vec < MultiEraBlockData > >
140- where
141- P : Into < PointOrTip > ,
142- {
140+ where P : Into < PointOrTip > {
143141 todo ! ( )
144142 }
145143}
@@ -204,9 +202,7 @@ impl FollowerConfigBuilder {
204202 /// * `from`: Sync starting point.
205203 #[ must_use]
206204 pub fn follow_from < P > ( mut self , from : P ) -> Self
207- where
208- P : Into < PointOrTip > ,
209- {
205+ where P : Into < PointOrTip > {
210206 self . follow_from = from. into ( ) ;
211207 self
212208 }
@@ -264,9 +260,7 @@ impl Follower {
264260 ///
265261 /// Returns Err if something went wrong while communicating with the producer.
266262 pub async fn set_read_pointer < P > ( & mut self , _at : P ) -> Result < Option < Point > >
267- where
268- P : Into < PointOrTip > ,
269- {
263+ where P : Into < PointOrTip > {
270264 todo ! ( )
271265 }
272266
You can’t perform that action at this time.
0 commit comments