Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Jul 15, 2024
1 parent 9cbdd4b commit 59f75f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ain-ocean/src/api/address.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ use crate::{
use ain_macros::ocean_endpoint;
use axum::{routing::get, Extension, Router};
use bitcoin::{hashes::Hash, hex::DisplayHex, Txid};
use defichain_rpc::RpcApi;
use serde::{Deserialize, Serialize};
use serde_json::json;
use serde_with::skip_serializing_none;
use defichain_rpc::RpcApi;

#[derive(Deserialize)]
struct Address {
Expand Down Expand Up @@ -424,7 +424,7 @@ async fn list_tokens(
for (k, v) in account {
let token = get_token_cached(&ctx, &k).await?;
if token.is_none() {
continue
continue;
}
let (id, info) = token.unwrap();
let address_token = AddressToken {
Expand Down

0 comments on commit 59f75f7

Please sign in to comment.