From f38c6f53cfa68d3866d0614ea9490aef9f47bca7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 20 Jul 2022 18:45:10 -0400 Subject: [PATCH] Revert "*Process the queue in reverse" This reverts commit 8986d45e8e56ed2478979a6a8f2d9e410d9ceb26. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a71d7b3..e307726 100644 --- a/src/index.ts +++ b/src/index.ts @@ -62,7 +62,7 @@ export class RpcNetwork { } public async processQueue(): Promise { - for (const promise of this._actionQueue.reverse()) { + for (const promise of this._actionQueue) { try { const p = promise(); await p;