Skip to content

Commit 7884a78

Browse files
committed
Fix seed recovery and push hotfix
1 parent 86cc2cd commit 7884a78

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.11-hotfix
2+
3+
* Fix `restore from seed` where the Nostr client wasn't connected properly
4+
15
# 0.4.11
26

37
* Fix a bug where it was possible to reject recourse, even though it was already rejected

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.4.11"
2+
version = "0.4.11-hotfix"
33
edition = "2024"
44
license = "MIT"
55

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)