Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions mm2src/mm2_main/src/lp_native_dex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ use common::log::{info, warn};
use crypto::{from_hw_error, CryptoCtx, HwError, HwProcessingError, HwRpcError, WithHwRpcError};
use derive_more::Display;
use enum_derives::EnumFromTrait;
use kdf_walletconnect::WalletConnectCtx;
use mm2_core::mm_ctx::{MmArc, MmCtx};
use mm2_err_handle::common_errors::InternalError;
use mm2_err_handle::prelude::*;
Expand Down Expand Up @@ -419,10 +418,6 @@ pub async fn lp_init_continue(ctx: MmArc) -> MmInitResult<()> {
#[cfg(target_arch = "wasm32")]
init_wasm_event_streaming(&ctx);

// This function spawns related WalletConnect related tasks needed for initialization before
// WalletConnect can be usable in KDF.
WalletConnectCtx::from_ctx(&ctx).mm_err(|err| MmInitError::WalletInitError(err.to_string()))?;
Comment thread
shamardy marked this conversation as resolved.

ctx.spawner().spawn(clean_memory_loop(ctx.weak()));

Ok(())
Expand Down