pub fn get_issuers_batch(
    start_principal: Option<Principal>,
    limit: usize
) -> Vec<(Principal, Issuer)>
Expand description

Retrieves a batch of issuers starting from the given principal.

§Arguments

  • start_principal - The principal from which to start the batch retrieval.
  • limit - The maximum number of issuers to retrieve.

§Returns

  • A vector of tuples containing the principal and issuer.