Skip to content

Commit

Permalink
Remove tokio import
Browse files Browse the repository at this point in the history
  • Loading branch information
ninokeldishvili committed Nov 19, 2024
1 parent fb377df commit c5a8c46
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/cli/src/balance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,12 @@ pub async fn get_balances(subgraph_url: &str) -> Result<Value> {
};

let res = get_data(subgraph_url, variables).await?;
dbg!(&res);
Ok(res)
}

#[cfg(test)]
mod tests {
use super::*;
use tokio;

#[tokio::test]
async fn test_get_balances() {
Expand Down

0 comments on commit c5a8c46

Please sign in to comment.