@remixproject/engine
Advanced tools
Comparing version 0.3.43 to 0.3.44
{ | ||
"name": "@remixproject/engine", | ||
"version": "0.3.43", | ||
"version": "0.3.44", | ||
"homepage": "https://github.com/ethereum/remix-plugin/tree/master/packages/engine/core#readme", | ||
@@ -27,6 +27,6 @@ "repository": { | ||
"dependencies": { | ||
"@remixproject/plugin-utils": "0.3.43", | ||
"@remixproject/plugin-api": "0.3.43" | ||
"@remixproject/plugin-utils": "0.3.44", | ||
"@remixproject/plugin-api": "0.3.44" | ||
}, | ||
"peerDependencies": {} | ||
} |
@@ -54,2 +54,3 @@ "use strict"; | ||
}); | ||
this.emit('queue', this.queue); | ||
if (next) | ||
@@ -66,2 +67,3 @@ next.run(); | ||
this.queue.push(queue); | ||
this.emit('queue', this.queue); | ||
if (this.queue.length === 1) | ||
@@ -73,4 +75,6 @@ this.queue[0].run(); | ||
for (const queue of this.queue) { | ||
if (queue.request.from == request.from && (method ? queue.method == method : true)) | ||
if (queue.request.from == request.from && (method ? queue.method == method : true)) { | ||
queue.cancel(); | ||
this.emit('queue', queue.request); | ||
} | ||
} | ||
@@ -77,0 +81,0 @@ } |
Sorry, the diff of this file is not supported yet
99099
1394
+ Added@remixproject/plugin-api@0.3.44(transitive)
+ Added@remixproject/plugin-utils@0.3.44(transitive)
- Removed@remixproject/plugin-api@0.3.43(transitive)
- Removed@remixproject/plugin-utils@0.3.43(transitive)