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;