@@ -21,7 +21,7 @@ pub enum SyncItem<'i, I> {
21
21
OutPoint ( OutPoint ) ,
22
22
}
23
23
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 > {
25
25
fn fmt ( & self , f : & mut core:: fmt:: Formatter < ' _ > ) -> core:: fmt:: Result {
26
26
match self {
27
27
SyncItem :: Spk ( i, spk) => {
@@ -485,7 +485,7 @@ struct KeychainSpkIter<'r, K> {
485
485
inspect : & ' r mut Box < InspectFullScan < K > > ,
486
486
}
487
487
488
- impl < ' r , K : Ord + Clone > Iterator for KeychainSpkIter < ' r , K > {
488
+ impl < K : Ord + Clone > Iterator for KeychainSpkIter < ' _ , K > {
489
489
type Item = Indexed < ScriptBuf > ;
490
490
491
491
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -511,7 +511,7 @@ impl<'r, I, Item> SyncIter<'r, I, Item> {
511
511
512
512
impl < ' r , I , Item > ExactSizeIterator for SyncIter < ' r , I , Item > where SyncIter < ' r , I , Item > : Iterator { }
513
513
514
- impl < ' r , I > Iterator for SyncIter < ' r , I , ScriptBuf > {
514
+ impl < I > Iterator for SyncIter < ' _ , I , ScriptBuf > {
515
515
type Item = ScriptBuf ;
516
516
517
517
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -524,7 +524,7 @@ impl<'r, I> Iterator for SyncIter<'r, I, ScriptBuf> {
524
524
}
525
525
}
526
526
527
- impl < ' r , I > Iterator for SyncIter < ' r , I , Txid > {
527
+ impl < I > Iterator for SyncIter < ' _ , I , Txid > {
528
528
type Item = Txid ;
529
529
530
530
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -537,7 +537,7 @@ impl<'r, I> Iterator for SyncIter<'r, I, Txid> {
537
537
}
538
538
}
539
539
540
- impl < ' r , I > Iterator for SyncIter < ' r , I , OutPoint > {
540
+ impl < I > Iterator for SyncIter < ' _ , I , OutPoint > {
541
541
type Item = OutPoint ;
542
542
543
543
fn next ( & mut self ) -> Option < Self :: Item > {
0 commit comments