diff --git a/mm2src/coins/nft.rs b/mm2src/coins/nft.rs index afc5f260a9..1cf514c300 100644 --- a/mm2src/coins/nft.rs +++ b/mm2src/coins/nft.rs @@ -179,6 +179,9 @@ async fn process_transfers_confirmations( chains: Vec, history_list: &mut NftsTransferHistoryList, ) -> MmResult<(), TransferConfirmationsError> { + if history_list.transfer_history.is_empty() { + return Ok(()); + } async fn current_block_impl(coin: Coin) -> MmResult { coin.current_block() .compat()