1 2 3 4 5 6 7
use crate::xdr::{SorobanAuthorizationEntry, VecM}; pub fn auth(auth: &[VecM<SorobanAuthorizationEntry>]) { if !auth.is_empty() { tracing::debug!("{auth:#?}"); } }