android: launch with initial options

Feel free to change to have a customized android build

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-09-09 16:08:41 -07:00
parent 4a4fb06425
commit 4379466d1d
2 changed files with 16 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ impl<'a> MacOSKeyStorage<'a> {
.iter()
.map(|pubkey| {
let maybe_secret = self.get_secret_key_for_pubkey(pubkey);
Keypair::new(pubkey.clone(), maybe_secret)
Keypair::new(*pubkey, maybe_secret)
})
.collect()
}