Skip to content

Commit ca7d2cd

Browse files
authored
Fix recover from seed because of unconnected nostr client (#697)
1 parent 18295ed commit ca7d2cd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Added `actions` to `BitcreditBillResult`, with `bill_actions`, that are calculated based on which bill actions the caller is currently allowed to do (breaking DB and API change)
44
* Fix an edge case for request to recourse if the payer == holder - they should not have past endorsees and if the payer is a contingent holder, they should not show up in past endorsees
55
* Fix TS types for urls
6+
* Fix `restore from seed` where the Nostr client wasn't connected properly
67

78
# 0.4.11
89

crates/bcr-ebill-transport/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ pub async fn create_restore_account_service(
296296
);
297297

298298
let nostr_client = Arc::new(NostrClient::default(&nostr_config).await?);
299+
nostr_client.connect().await?;
299300
let nostr_contact_processor = Arc::new(NostrContactProcessor::new(
300301
nostr_client.clone(),
301302
db_context.nostr_contact_store.clone(),

0 commit comments

Comments
 (0)