Merge branch 'dev' into disclaimer-notify

This commit is contained in:
Kevin Serrano 2017-02-09 19:04:17 -08:00
commit f9601ac2dd
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
3 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Changelog
## Current Master
- net_version has been made synchronous.
## 3.2.1 2017-2-8

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

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