Revert "*Process the queue in reverse"

This reverts commit 8986d45e8e.
This commit is contained in:
Derrick Hammer 2022-07-20 18:45:10 -04:00
parent 34d96e94f9
commit f38c6f53cf
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ export class RpcNetwork {
}
public async processQueue(): Promise<void> {
for (const promise of this._actionQueue.reverse()) {
for (const promise of this._actionQueue) {
try {
const p = promise();
await p;