forChallenge static method
Implementation
static List<ChallengePieceResolver> forChallenge(
Challenge config,
String serializedInput,
) {
return config.salts.map((salt) {
return ChallengePieceResolver(
salt,
serializedInput,
config.difficultyFactor,
);
}).toList();
}