File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub async fn main(Extension(config): Extension<SharedConfig>) -> Html<String> {
6464 Html ( render_page ( public_node_url, captcha_key) )
6565}
6666
67- #[ tracing:: instrument( skip ( wallet ) ) ]
67+ #[ tracing:: instrument( skip_all ) ]
6868pub async fn health ( Extension ( wallet) : Extension < SharedWallet > ) -> Response {
6969 // ping client for health
7070 let client = wallet
@@ -202,7 +202,7 @@ async fn submit_tx_with_timeout(
202202 Ok ( ( ) )
203203}
204204
205- #[ tracing:: instrument( skip ( wallet , config ) ) ]
205+ #[ tracing:: instrument( skip_all ) ]
206206pub async fn dispense_tokens (
207207 Json ( input) : Json < DispenseInput > ,
208208 Extension ( wallet) : Extension < SharedWallet > ,
@@ -352,7 +352,7 @@ pub async fn dispense_tokens(
352352 } )
353353}
354354
355- #[ tracing:: instrument( skip ( config ) ) ]
355+ #[ tracing:: instrument( skip_all ) ]
356356pub async fn dispense_info (
357357 Extension ( config) : Extension < SharedConfig > ,
358358) -> Result < DispenseInfoResponse , DispenseError > {
You can’t perform that action at this time.
0 commit comments