Ensure 3box validation uses the correct address (#7235)

feature/default_network_editable
Dan J Miller 5 years ago committed by Mark Stacey
parent 8d97bdc5c9
commit daf4fe439c
  1. 15
      app/scripts/controllers/threebox.js
  2. 1
      app/scripts/metamask-controller.js

@ -20,7 +20,6 @@ class ThreeBoxController {
addressBookController, addressBookController,
version, version,
getKeyringControllerState, getKeyringControllerState,
getSelectedAddress,
} = opts } = opts
this.preferencesController = preferencesController this.preferencesController = preferencesController
@ -32,18 +31,20 @@ class ThreeBoxController {
if (origin !== '3Box') { return [] } if (origin !== '3Box') { return [] }
const isUnlocked = getKeyringControllerState().isUnlocked const isUnlocked = getKeyringControllerState().isUnlocked
const selectedAddress = getSelectedAddress() const accounts = await this.keyringController.getAccounts()
if (isUnlocked && selectedAddress) { if (isUnlocked && accounts[0]) {
return [selectedAddress] const appKeyAddress = await this.keyringController.getAppKeyAddress(accounts[0], 'wallet://3box.metamask.io')
return [appKeyAddress]
} else { } else {
return [] return []
} }
}, },
processPersonalMessage: (msgParams) => { processPersonalMessage: async (msgParams) => {
return Promise.resolve(keyringController.signPersonalMessage(msgParams, { const accounts = await this.keyringController.getAccounts()
return keyringController.signPersonalMessage({ ...msgParams, from: accounts[0] }, {
withAppKeyOrigin: 'wallet://3box.metamask.io', withAppKeyOrigin: 'wallet://3box.metamask.io',
})) })
}, },
}) })

@ -206,7 +206,6 @@ module.exports = class MetamaskController extends EventEmitter {
keyringController: this.keyringController, keyringController: this.keyringController,
initState: initState.ThreeBoxController, initState: initState.ThreeBoxController,
getKeyringControllerState: this.keyringController.memStore.getState.bind(this.keyringController.memStore), getKeyringControllerState: this.keyringController.memStore.getState.bind(this.keyringController.memStore),
getSelectedAddress: this.preferencesController.getSelectedAddress.bind(this.preferencesController),
version, version,
}) })

Loading…
Cancel
Save