migrate AccountManagementView to enostr Keypair

Signed-off-by: kernelkind <kernelkind@gmail.com>
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
kernelkind
2024-05-14 16:23:45 -04:00
committed by William Casarin
parent bb25fd4ae1
commit 95f8623c41
7 changed files with 51 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
use enostr::RelayPool;
use enostr::{FullKeypair, RelayPool};
pub struct UserAccount {
pub key: nostr_sdk::Keys,
pub key: FullKeypair,
pub relays: RelayPool,
}