From 43ad0961140be451e5daf6718461d15aee5314b2 Mon Sep 17 00:00:00 2001 From: Daniel Simon Date: Wed, 10 Apr 2024 16:03:06 +0700 Subject: [PATCH 1/2] ci: deploy in slow mode Transactions were prone to getting stuck in the mempool, for some reason, when sending a lot of them in parallel. It would be worth investigating why, but in the meantime, just stick to one TX at a time. Hopefully, this helps. --- contracts/utils/deploy-cli.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/utils/deploy-cli.ts b/contracts/utils/deploy-cli.ts index 79344f66..1d364b0e 100644 --- a/contracts/utils/deploy-cli.ts +++ b/contracts/utils/deploy-cli.ts @@ -107,6 +107,7 @@ export async function main() { "--rpc-url", options.rpcUrl, "--broadcast", + "--slow", ]; // verify From 04321a7b655795c449d6bd4036ae2c381ff7a2ae Mon Sep 17 00:00:00 2001 From: Daniel Simon Date: Wed, 10 Apr 2024 17:41:39 +0700 Subject: [PATCH 2/2] Revert "ci: deploy in slow mode" It didn't help. This reverts commit 43ad0961140be451e5daf6718461d15aee5314b2. --- contracts/utils/deploy-cli.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/utils/deploy-cli.ts b/contracts/utils/deploy-cli.ts index 1d364b0e..79344f66 100644 --- a/contracts/utils/deploy-cli.ts +++ b/contracts/utils/deploy-cli.ts @@ -107,7 +107,6 @@ export async function main() { "--rpc-url", options.rpcUrl, "--broadcast", - "--slow", ]; // verify