We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a3c20 commit fb920f2Copy full SHA for fb920f2
./workflows/check-PRs.yml
@@ -123,7 +123,7 @@ jobs:
123
run: |
124
docker build --no-cache -t ghcr.io/eyblockchain/local-zokrates -f zokrates.Dockerfile .
125
docker-compose build
126
-./start-nightfall -g &> test-gas.log &disown
+./start-nightfall -g -d &> test-gas.log &disown
127
env:
128
TRANSACTIONS_PER_BLOCK: 32
129
test/utils.mjs
@@ -209,7 +209,7 @@ export class Web3Client {
209
210
async waitForEvent(eventLogs, expectedEvents, count = 1) {
211
const length = count !== 1 ? count : expectedEvents.length;
212
-let timeout = 1000;
+let timeout = 100;
213
while (eventLogs.length < length) {
214
await new Promise(resolve => setTimeout(resolve, 3000));
215
timeout--;
0 commit comments