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