soroban-cli 26.0.0

Soroban CLI
Documentation
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:#?}");
    }
}