damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 8fb5b4f49cee2fa5e7773644d1d4781eade22d5c
parent ae4d9ab8ba007c1e82990c502378199d75385e7d
Author: William Casarin <jb55@jb55.com>
Date:   Sun, 14 May 2023 00:02:44 -0700

misc logs

Diffstat:
Mdamus/Models/UserSettingsStore.swift | 2+-
Mdamus/Util/WalletConnect.swift | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/damus/Models/UserSettingsStore.swift b/damus/Models/UserSettingsStore.swift @@ -203,7 +203,7 @@ class UserSettingsStore: ObservableObject { var internal_libretranslate_api_key: String? @KeychainStorage(account: "nostr_wallet_connect") - var nostr_wallet_connect: String? + var nostr_wallet_connect: String? // TODO: strongly type this to WalletConnectURL var can_translate: Bool { switch translation_service { diff --git a/damus/Util/WalletConnect.swift b/damus/Util/WalletConnect.swift @@ -212,6 +212,7 @@ func nwc_success(zapcache: Zaps, evcache: EventCache, resp: FullWalletResponse) if nwc_state.update_state(state: .confirmed) { // notify the zaps model of an update so it can mark them as paid evcache.get_cache_data(pzap.target.id).zaps_model.objectWillChange.send() + print("NWC success confirmed") } return }