Unverified Commit 37162ad0 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #691 from ethereum/fixtapetest

Do not poll in this version of execution context
parents f241435a 82650b20
{ {
"name": "remix-lib", "name": "remix-lib",
"version": "0.1.3", "version": "0.1.4",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [ "contributors": [
{ {
......
...@@ -186,7 +186,8 @@ function ExecutionContext () { ...@@ -186,7 +186,8 @@ function ExecutionContext () {
this.blockGasLimitDefault = 4300000 this.blockGasLimitDefault = 4300000
this.blockGasLimit = this.blockGasLimitDefault this.blockGasLimit = this.blockGasLimitDefault
setInterval(() => { // removing the setinterval cause it cause tape test to hang and we don't need this.
// there's a copy of this file in remix-ide repo @TODO to refactor
if (this.getProvider() !== 'vm') { if (this.getProvider() !== 'vm') {
web3.eth.getBlock('latest', (err, block) => { web3.eth.getBlock('latest', (err, block) => {
if (!err) { if (!err) {
...@@ -197,7 +198,6 @@ function ExecutionContext () { ...@@ -197,7 +198,6 @@ function ExecutionContext () {
} }
}) })
} }
}, 15000)
// TODO: not used here anymore and needs to be moved // TODO: not used here anymore and needs to be moved
function setProviderFromEndpoint (endpoint, context, cb) { function setProviderFromEndpoint (endpoint, context, cb) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment