Skip to content

Commit b6bf9ff

Browse files
committed
Evaluate: lower delay waiting for a free thread
1 parent 62ea499 commit b6bf9ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plutus-script-evaluation/lib/Evaluate.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ evaluateScripts conn startBlock callback = do
108108
waitForAFreeThread maxThreads counter = do
109109
threadCount <- readIORef counter
110110
when (threadCount >= maxThreads) do
111-
threadDelay 60_000 -- wait for 60ms
111+
threadDelay 1_000 -- wait for 1ms
112112
waitForAFreeThread maxThreads counter
113113

114114
inputFromRecord

0 commit comments

Comments
 (0)