code cleanups and clarifications

This commit is contained in:
Fabian Kaczmarczyck
2021-01-12 17:57:58 +01:00
parent da27848c27
commit c30268a099
4 changed files with 11 additions and 17 deletions

View File

@@ -544,6 +544,11 @@ impl PersistentStore {
self.init(rng)?;
Ok(())
}
pub fn force_pin_change(&mut self) -> Result<(), Ctap2StatusCode> {
// TODO(kaczmarczyck) implement storage logic
Ok(())
}
}
impl From<persistent_store::StoreError> for Ctap2StatusCode {