@@ -99,11 +99,17 @@ impl SenderAccountTask {
99
99
sender : Address ,
100
100
config : & ' static SenderAccountConfig ,
101
101
pgpool : sqlx:: PgPool ,
102
- _escrow_accounts : Receiver < EscrowAccounts > ,
103
- _escrow_subgraph : & ' static SubgraphClient ,
104
- _network_subgraph : & ' static SubgraphClient ,
105
- _domain_separator : Eip712Domain ,
106
- _sender_aggregator_endpoint : reqwest:: Url ,
102
+ #[ cfg_attr( any( test, feature = "test" ) , allow( unused_variables) ) ] escrow_accounts : Receiver <
103
+ EscrowAccounts ,
104
+ > ,
105
+ #[ cfg_attr( any( test, feature = "test" ) , allow( unused_variables) ) ]
106
+ escrow_subgraph : & ' static SubgraphClient ,
107
+ #[ cfg_attr( any( test, feature = "test" ) , allow( unused_variables) ) ]
108
+ network_subgraph : & ' static SubgraphClient ,
109
+ #[ cfg_attr( any( test, feature = "test" ) , allow( unused_variables) ) ]
110
+ domain_separator : Eip712Domain ,
111
+ #[ cfg_attr( any( test, feature = "test" ) , allow( unused_variables) ) ]
112
+ sender_aggregator_endpoint : reqwest:: Url ,
107
113
prefix : Option < String > ,
108
114
) -> Result < TaskHandle < SenderAccountMessage > > {
109
115
// Create a separate channel for parent-child communication
0 commit comments