mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
More tests and some cleanup (#3331)
This commit is contained in:
@@ -59,12 +59,10 @@ pub trait BareCryptoStore: Send + Sync {
|
||||
/// Places it into the file system store.
|
||||
///
|
||||
/// `Err` if there's some sort of weird filesystem error, but should generally be `Ok`.
|
||||
fn insert_unknown(&mut self, _key_type: KeyTypeId, _suri: &str, _public: &[u8]) -> Result<(), ()> {
|
||||
Err(())
|
||||
}
|
||||
fn insert_unknown(&mut self, _key_type: KeyTypeId, _suri: &str, _public: &[u8]) -> Result<(), ()>;
|
||||
|
||||
/// Get the password for this store.
|
||||
fn password(&self) -> Option<&str> { None }
|
||||
fn password(&self) -> Option<&str>;
|
||||
}
|
||||
|
||||
/// A pointer to the key store.
|
||||
|
||||
Reference in New Issue
Block a user