use miden_objects::account::AccountComponent;
use crate::account::components::no_auth_library;
pub struct NoAuth;
impl NoAuth {
pub fn new() -> Self {
Self
}
}
impl Default for NoAuth {
fn default() -> Self {
Self::new()
}
}
impl From<NoAuth> for AccountComponent {
fn from(_: NoAuth) -> Self {
AccountComponent::new(no_auth_library(), vec![])
.expect("NoAuth component should satisfy the requirements of a valid account component")
.with_supports_all_types()
}
}
#[cfg(test)]
mod tests {
use miden_objects::account::AccountBuilder;
use super::*;
use crate::account::wallets::BasicWallet;
#[test]
fn test_no_auth_component() {
let _account = AccountBuilder::new([0; 32])
.with_auth_component(NoAuth)
.with_component(BasicWallet)
.build()
.expect("account building failed");
}
}