Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Oct 9, 2024
1 parent 8b1b6c3 commit 4202950
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mm2src/kdf_walletconnect/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ impl WalletConnectCtx {
}

let namespaces = self.namespaces.lock().await;
println!("namespaces: {namespaces:?}");
namespaces
.iter()
.find_map(|(key, namespace)| self.find_account_in_namespace(key, namespace, chain_id))
Expand All @@ -192,8 +191,6 @@ impl WalletConnectCtx {
let chains = namespace.chains.as_ref()?;
let key = format!("{namespace_key}:{chain_id}");

println!("chains: {chains:?}");

if !chains.contains(&key) {
return None;
}
Expand Down Expand Up @@ -262,7 +259,7 @@ impl WalletConnectCtx {
self.publish_payload(topic, irn_metadata, Payload::Request(request))
.await?;

deb!("Outbound request sent!\n");
info!("Outbound request sent!\n");

Ok(())
}
Expand Down

0 comments on commit 4202950

Please sign in to comment.