@@ -21,7 +21,7 @@ pub enum SyncItem<'i, I> {
2121 OutPoint ( OutPoint ) ,
2222}
2323
24- impl < ' i , I : core:: fmt:: Debug + core:: any:: Any > core:: fmt:: Display for SyncItem < ' i , I > {
24+ impl < I : core:: fmt:: Debug + core:: any:: Any > core:: fmt:: Display for SyncItem < ' _ , I > {
2525 fn fmt ( & self , f : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
2626 match self {
2727 SyncItem :: Spk ( i, spk) => {
@@ -485,7 +485,7 @@ struct KeychainSpkIter<'r, K> {
485485 inspect : & ' r mut Box < InspectFullScan < K > > ,
486486}
487487
488- impl < ' r , K : Ord + Clone > Iterator for KeychainSpkIter < ' r , K > {
488+ impl < K : Ord + Clone > Iterator for KeychainSpkIter < ' _ , K > {
489489 type Item = Indexed < ScriptBuf > ;
490490
491491 fn next ( & mut self ) -> Option < Self :: Item > {
@@ -511,7 +511,7 @@ impl<'r, I, Item> SyncIter<'r, I, Item> {
511511
512512impl < ' r , I , Item > ExactSizeIterator for SyncIter < ' r , I , Item > where SyncIter < ' r , I , Item > : Iterator { }
513513
514- impl < ' r , I > Iterator for SyncIter < ' r , I , ScriptBuf > {
514+ impl < I > Iterator for SyncIter < ' _ , I , ScriptBuf > {
515515 type Item = ScriptBuf ;
516516
517517 fn next ( & mut self ) -> Option < Self :: Item > {
@@ -524,7 +524,7 @@ impl<'r, I> Iterator for SyncIter<'r, I, ScriptBuf> {
524524 }
525525}
526526
527- impl < ' r , I > Iterator for SyncIter < ' r , I , Txid > {
527+ impl < I > Iterator for SyncIter < ' _ , I , Txid > {
528528 type Item = Txid ;
529529
530530 fn next ( & mut self ) -> Option < Self :: Item > {
@@ -537,7 +537,7 @@ impl<'r, I> Iterator for SyncIter<'r, I, Txid> {
537537 }
538538}
539539
540- impl < ' r , I > Iterator for SyncIter < ' r , I , OutPoint > {
540+ impl < I > Iterator for SyncIter < ' _ , I , OutPoint > {
541541 type Item = OutPoint ;
542542
543543 fn next ( & mut self ) -> Option < Self :: Item > {
0 commit comments