From 6bf03c736516268be1c95548e5e18b911ff067d2 Mon Sep 17 00:00:00 2001 From: benthecarman Date: Thu, 4 Apr 2024 13:38:17 -0500 Subject: [PATCH] Fix silent merge conflict --- mutiny-core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutiny-core/src/lib.rs b/mutiny-core/src/lib.rs index dd450d7f3..440fb32b9 100644 --- a/mutiny-core/src/lib.rs +++ b/mutiny-core/src/lib.rs @@ -1071,7 +1071,7 @@ impl MutinyWalletBuilder { // start the hermes background process // get profile key if we have it, we need this to decrypt private zaps - let profile_key = match &mw.nostr.primary_key { + let profile_key = match &mw.nostr.nostr_keys.read().await.signer { NostrSigner::Keys(keys) => Some(keys.clone()), #[cfg(target_arch = "wasm32")] NostrSigner::NIP07(_) => None,