Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
!isValidInteger(minimum) ||
minimum < MULTISIGNATURE_MIN_KEYSGROUP ||
minimum > MULTISIGNATURE_MAX_KEYSGROUP
) {
throw new Error(
`Please provide a valid minimum value. Expected integer between ${MULTISIGNATURE_MIN_KEYSGROUP} and ${MULTISIGNATURE_MAX_KEYSGROUP}.`,
);
}
if (keysgroup.length < minimum) {
throw new Error(
'Minimum number of signatures is larger than the number of keys in the keysgroup.',
);
}
validateKeysgroup(
keysgroup,
MULTISIGNATURE_MIN_KEYSGROUP,
MULTISIGNATURE_MAX_KEYSGROUP,
);
validateNetworkIdentifier(networkIdentifier);
};