File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ mod list_channels {
130
130
serde_json:: Value :: from_str ( & format ! ( r#"[{{"id": "{}"}}]"# , validator_id) )
131
131
. expect ( "Not a valid json" )
132
132
} ) ;
133
-
134
133
let ( where_clauses, params) =
135
134
channel_list_query_params ( creator, validator. as_ref ( ) , valid_until_ge) ;
136
135
let total_count_params = ( where_clauses. clone ( ) , params. clone ( ) ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pub async fn config<A: Adapter>(
8
8
_: Request < Body > ,
9
9
app : & Application < A > ,
10
10
) -> Result < Response < Body > , ResponseError > {
11
- let config_str: String = serde_json:: to_string ( & app. config ) ?;
11
+ let config_str = serde_json:: to_string ( & app. config ) ?;
12
12
13
13
Ok ( Response :: builder ( )
14
14
. header ( CONTENT_TYPE , "application/json" )
You can’t perform that action at this time.
0 commit comments