@@ -56,15 +56,15 @@ impl std::fmt::Debug for MappingTrigger {
5656 #[ derive( Debug ) ]
5757 enum MappingTriggerWithoutBlock {
5858 Log {
59- transaction : Arc < Transaction > ,
60- log : Arc < Log > ,
61- params : Vec < LogParam > ,
59+ _transaction : Arc < Transaction > ,
60+ _log : Arc < Log > ,
61+ _params : Vec < LogParam > ,
6262 } ,
6363 Call {
64- transaction : Arc < Transaction > ,
65- call : Arc < EthereumCall > ,
66- inputs : Vec < LogParam > ,
67- outputs : Vec < LogParam > ,
64+ _transaction : Arc < Transaction > ,
65+ _call : Arc < EthereumCall > ,
66+ _inputs : Vec < LogParam > ,
67+ _outputs : Vec < LogParam > ,
6868 } ,
6969 Block ,
7070 }
@@ -76,9 +76,9 @@ impl std::fmt::Debug for MappingTrigger {
7676 log,
7777 params,
7878 } => MappingTriggerWithoutBlock :: Log {
79- transaction : transaction. cheap_clone ( ) ,
80- log : log. cheap_clone ( ) ,
81- params : params. clone ( ) ,
79+ _transaction : transaction. cheap_clone ( ) ,
80+ _log : log. cheap_clone ( ) ,
81+ _params : params. clone ( ) ,
8282 } ,
8383 MappingTrigger :: Call {
8484 block : _,
@@ -87,10 +87,10 @@ impl std::fmt::Debug for MappingTrigger {
8787 inputs,
8888 outputs,
8989 } => MappingTriggerWithoutBlock :: Call {
90- transaction : transaction. cheap_clone ( ) ,
91- call : call. cheap_clone ( ) ,
92- inputs : inputs. clone ( ) ,
93- outputs : outputs. clone ( ) ,
90+ _transaction : transaction. cheap_clone ( ) ,
91+ _call : call. cheap_clone ( ) ,
92+ _inputs : inputs. clone ( ) ,
93+ _outputs : outputs. clone ( ) ,
9494 } ,
9595 MappingTrigger :: Block { block : _ } => MappingTriggerWithoutBlock :: Block ,
9696 } ;
0 commit comments