From da6c8d35146edd9b9078f7e170504bde39ca2fee Mon Sep 17 00:00:00 2001 From: dapplion Date: Sun, 11 Aug 2019 23:52:51 +0200 Subject: [PATCH] Adjust transaction count to a reasonable number --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 5c532ec..4c25463 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -260,7 +260,7 @@ export default function App() { // numSteps = 52 take 8ms to run setSimulationRunning(true); for (let t = 0; t < numSteps; t++) { - const txsWeek = rv_U(5, 2 * t + 5); + const txsWeek = rv_U(100, 40 * t + 100); const R = getLast(R_t); const S = getLast(S_t);