isAccountSigner method

bool isAccountSigner(
  1. int index
)

Check if the account at index is a signer account.

Implementation

bool isAccountSigner(final int index) {
  return index < header.numRequiredSignatures;
}