solution_for_delegated_puzzle function

Future<Program> solution_for_delegated_puzzle({
  1. required Program delegated_puzzle,
  2. required Program solution,
})

Implementation

Future<Program> solution_for_delegated_puzzle(
    {required Program delegated_puzzle, required Program solution}) async {
  return Program.list(
      <Program>[await Program.list([]), delegated_puzzle, solution]);
}