docs: bump challenge count

This commit is contained in:
Tiago
2025-04-25 18:27:58 +01:00
parent b61c888696
commit d132babfca
2 changed files with 2 additions and 2 deletions
@@ -2,7 +2,7 @@
import { ref } from "vue";
const difficulty = ref(4);
const challenges = ref(18);
const challenges = ref(50);
const challengeSize = ref(32);
const workers = ref(8);
const benchmarks = ref(1);
+1 -1
View File
@@ -7,7 +7,7 @@ onMounted(() => {
const browserCrypto = window.crypto;
return new Response(
JSON.stringify({
challenge: Array.from({ length: 18 }, () => [
challenge: Array.from({ length: 50 }, () => [
Array.from(
browserCrypto.getRandomValues(new Uint8Array(Math.ceil(32 / 2)))
)