1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Allowed net_version to be called synchronously

This commit is contained in:
Kevin Serrano 2017-02-08 15:51:22 -08:00
parent ce57957aa0
commit 4033b620bd
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Current Master
- net_version has been made synchronous.
## 3.2.0 2017-1-24
- Add ability to import accounts in JSON file format (used by Mist, Geth, MyEtherWallet, and more!)

View File

@ -84,6 +84,11 @@ MetamaskInpageProvider.prototype.send = function (payload) {
result = true
break
case 'net_version':
let networkVersion = self.publicConfigStore.getState().networkVersion
result = networkVersion
break
// throw not-supported Error
default:
var link = 'https://github.com/MetaMask/faq/blob/master/DEVELOPERS.md#dizzy-all-async---think-of-metamask-as-a-light-client'

View File

@ -178,7 +178,7 @@ module.exports = class MetamaskController extends EventEmitter {
// sync publicConfigStore with transform
pipe(
this.store,
storeTransform(selectPublicState),
storeTransform(selectPublicState.bind(this)),
publicConfigStore
)
@ -186,6 +186,7 @@ module.exports = class MetamaskController extends EventEmitter {
const result = { selectedAddress: undefined }
try {
result.selectedAddress = state.PreferencesController.selectedAddress
result.networkVersion = this.getNetworkState()
} catch (_) {}
return result
}