ci: quieter eth

This commit is contained in:
Evan Gray 2022-10-26 19:32:50 -04:00 committed by Evan Gray
parent d4fa63bae1
commit f184b308a8
3 changed files with 4 additions and 1 deletions

View File

@ -36,6 +36,7 @@ spec:
command:
- npx
- ganache-cli
- -q
- -e 10000
- --deterministic
- --time="1970-01-01T00:00:00+00:00"
@ -66,3 +67,4 @@ spec:
- -c
- "npx truffle exec mine.js"
---

View File

@ -37,6 +37,7 @@ spec:
command:
- npx
- ganache-cli
- -q
- -e 10000
- --deterministic
- --time="1970-01-01T00:00:00+00:00"

View File

@ -27,7 +27,7 @@ function sleep(ms) {
module.exports = function(callback) {
const fn = async () => {
while (true) {
console.log(await advanceBlock());
await advanceBlock();
await sleep(1000);
}
}