Skip to content

Commit

Permalink
fix fmt and logs
Browse files Browse the repository at this point in the history
  • Loading branch information
laruh committed Dec 10, 2023
1 parent 68b2710 commit 79cfbcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mm2src/coins/nft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use crate::nft::nft_structs::{build_nft_with_empty_meta, BuildNftFields, NftComm
PhishingDomainReq, PhishingDomainRes, RefreshMetadataReq, SpamContractReq,
SpamContractRes, TransferMeta, TransferStatus, UriMeta};
use crate::nft::storage::{NftListStorageOps, NftTransferHistoryStorageOps};
use common::log::info;
use common::parse_rfc3339_to_timestamp;
use crypto::StandardHDCoinAddress;
use ethereum_types::{Address, H256};
Expand All @@ -36,7 +37,6 @@ use std::cmp::Ordering;
use std::collections::{HashMap, HashSet};
use std::str::FromStr;
use web3::types::TransactionId;
use common::log::info;

#[cfg(not(target_arch = "wasm32"))]
use mm2_net::native_http::send_request_to_uri;
Expand Down
2 changes: 1 addition & 1 deletion mm2src/mm2_db/src/indexed_db/drivers/cursor/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ impl CursorDriver {

pub(crate) async fn next(&mut self, first_row_only: bool) -> CursorResult<Option<(ItemId, Json)>> {
loop {
info!("CursorDriver = \n {:?} \n", self.inner);
info!("CursorDriver = \n {:?} \n", self);
// Check if we got `CursorAction::Stop` at the last iteration.
if self.stopped {
return Ok(None);
Expand Down

0 comments on commit 79cfbcc

Please sign in to comment.