@ -49,7 +49,7 @@ class ContractDropdownUI {
}
listenToContextChange () {
this.blockchain.event.register('newExecutionContext', () => {
this.blockchain.event.register('contextChanged', () => {
this.blockchain.updateNetwork((err, {name} = {}) => {
if (err) {
console.log(`can't detect network`)
@ -212,7 +212,6 @@ class SettingsUI {
this.event.trigger('clearInstance', [])
this.updateNetwork()
this.updatePlusButton()
this.blockchain.event.trigger('newExecutionContext', [])
updatePlusButton () {
@ -196,17 +196,12 @@ class Blockchain {
updateNetwork (cb) {
this.networkcallid++
((callid) => {
this.executionContext.detectNetwork((err, { id, name } = {}) => {
if (this.networkcallid > callid) return
return cb(err)
cb(null, {id, name})
})
})(this.networkcallid)
detectNetwork (cb) {