Skip to content

Commit

Permalink
Merge pull request #2011 from ethereum/bumpVersion
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
yann300 authored May 22, 2019
2 parents 4354030 + 9429b80 commit 7e46cb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remix-ide",
"version": "v0.8.0-rc.1",
"version": "v0.8.0-rc.2",
"description": "Minimalistic browser-based Solidity IDE",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
Expand Down
4 changes: 2 additions & 2 deletions src/universal-dapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = class UniversalDApp extends UdappApi {
executionContext.detectNetwork(cb)
},
personalMode: () => {
return this._deps.config.get('settings/personal-mode')
return executionContext.getProvider() === 'web3' ? this._deps.config.get('settings/personal-mode') : false
}
}
this.txRunner = new TxRunner({}, this._txRunnerAPI)
Expand Down Expand Up @@ -67,7 +67,7 @@ module.exports = class UniversalDApp extends UdappApi {
executionContext.detectNetwork(cb)
},
personalMode: () => {
return this._deps.config.get('settings/personal-mode')
return executionContext.getProvider() === 'web3' ? this._deps.config.get('settings/personal-mode') : false
}
})
this.txRunner.event.register('transactionBroadcasted', (txhash) => {
Expand Down

0 comments on commit 7e46cb0

Please sign in to comment.