Unverified Commit 3eda32c9 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2306 from ethereum/bumpRemixLibs

Bump remix libs
parents c19878d0 afb4ae87
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -51,12 +51,12 @@ ...@@ -51,12 +51,12 @@
"npm-merge-driver": "^2.3.5", "npm-merge-driver": "^2.3.5",
"npm-run-all": "^4.0.2", "npm-run-all": "^4.0.2",
"onchange": "^3.2.1", "onchange": "^3.2.1",
"remix-analyzer": "0.3.11", "remix-analyzer": "0.3.12",
"remix-debug": "0.3.12", "remix-debug": "0.3.13",
"remix-lib": "0.4.10", "remix-lib": "0.4.11",
"remix-solidity": "0.3.13", "remix-solidity": "0.3.14",
"remix-tabs": "1.0.48", "remix-tabs": "1.0.48",
"remix-tests": "0.1.16", "remix-tests": "0.1.17",
"remixd": "0.1.8-alpha.7", "remixd": "0.1.8-alpha.7",
"request": "^2.83.0", "request": "^2.83.0",
"rimraf": "^2.6.1", "rimraf": "^2.6.1",
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
"nightwatch_local_ballot": "nightwatch ./test-browser/tests/ballot.js --config nightwatch.js --env chrome ", "nightwatch_local_ballot": "nightwatch ./test-browser/tests/ballot.js --config nightwatch.js --env chrome ",
"nightwatch_local_libraryDeployment": "nightwatch ./test-browser/tests/libraryDeployment.js --config nightwatch.js --env chrome ", "nightwatch_local_libraryDeployment": "nightwatch ./test-browser/tests/libraryDeployment.js --config nightwatch.js --env chrome ",
"nightwatch_local_solidityImport": "nightwatch ./test-browser/tests/solidityImport.js --config nightwatch.js --env chrome ", "nightwatch_local_solidityImport": "nightwatch ./test-browser/tests/solidityImport.js --config nightwatch.js --env chrome ",
"nightwatch_local_recorder": "nightwatch ./test-browser/tests/recorder.js --config nightwatch.js --env local ", "nightwatch_local_recorder": "nightwatch ./test-browser/tests/recorder.js --config nightwatch.js --env chrome ",
"nightwatch_local_transactionExecution": "nightwatch ./test-browser/tests/transactionExecution.js --config nightwatch.js --env chrome ", "nightwatch_local_transactionExecution": "nightwatch ./test-browser/tests/transactionExecution.js --config nightwatch.js --env chrome ",
"nightwatch_local_staticAnalysis": "nightwatch ./test-browser/tests/staticAnalysis.js --config nightwatch.js --env chrome ", "nightwatch_local_staticAnalysis": "nightwatch ./test-browser/tests/staticAnalysis.js --config nightwatch.js --env chrome ",
"nightwatch_local_signingMessage": "nightwatch ./test-browser/tests/signingMessage.js --config nightwatch.js --env chrome ", "nightwatch_local_signingMessage": "nightwatch ./test-browser/tests/signingMessage.js --config nightwatch.js --env chrome ",
......
...@@ -45,8 +45,6 @@ export class RunTab extends LibraryPlugin { ...@@ -45,8 +45,6 @@ export class RunTab extends LibraryPlugin {
this.filePanel = filePanel this.filePanel = filePanel
this.compilersArtefacts = compilersArtefacts this.compilersArtefacts = compilersArtefacts
this.networkModule = networkModule this.networkModule = networkModule
executionContext.checkpointAndCommit(() => { console.log('initial checkpoint and commit of JavaScript VM') })
} }
onActivationInternal () { onActivationInternal () {
......
...@@ -59,6 +59,7 @@ UniversalDAppUI.prototype.renderInstance = function (contract, address, contract ...@@ -59,6 +59,7 @@ UniversalDAppUI.prototype.renderInstance = function (contract, address, contract
UniversalDAppUI.prototype.renderInstanceFromABI = function (contractABI, address, contractName) { UniversalDAppUI.prototype.renderInstanceFromABI = function (contractABI, address, contractName) {
var self = this var self = this
address = (address.slice(0, 2) === '0x' ? '' : '0x') + address.toString('hex') address = (address.slice(0, 2) === '0x' ? '' : '0x') + address.toString('hex')
address = ethJSUtil.toChecksumAddress(address)
var instance = yo`<div class="instance ${css.instance} ${css.hidesub}" id="instance${address}"></div>` var instance = yo`<div class="instance ${css.instance} ${css.hidesub}" id="instance${address}"></div>`
var context = self.udapp.context() var context = self.udapp.context()
......
...@@ -68,7 +68,7 @@ var sources = [{'browser/testRecorder.sol': {content: `contract testRecorder { ...@@ -68,7 +68,7 @@ var sources = [{'browser/testRecorder.sol': {content: `contract testRecorder {
var records = `{ var records = `{
"accounts": { "accounts": {
"account{0}": "0xca35b7d915458ef540ade6068dfe2f44e8fa733c" "account{0}": "0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c"
}, },
"linkReferences": { "linkReferences": {
"testLib": "created{1512830014773}" "testLib": "created{1512830014773}"
...@@ -226,7 +226,7 @@ var records = `{ ...@@ -226,7 +226,7 @@ var records = `{
var scenario = { var scenario = {
'accounts': { 'accounts': {
'account{0}': '0xca35b7d915458ef540ade6068dfe2f44e8fa733c' 'account{0}': '0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c'
}, },
'linkReferences': {}, 'linkReferences': {},
'transactions': [ 'transactions': [
......
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