mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #1019 from MetaMask/i1014-FixSigning
dev - fix signing
This commit is contained in:
commit
a245fb7d22
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
## 3.0.1 2017-1-17
|
||||||
|
|
||||||
|
- Fixed bug that prevented eth.sign from working.
|
||||||
|
|
||||||
## 3.0.0 2017-1-16
|
## 3.0.0 2017-1-16
|
||||||
|
|
||||||
- Fix seed word account generation (https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd#.t4i1qmmsz).
|
- Fix seed word account generation (https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd#.t4i1qmmsz).
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "MetaMask",
|
"name": "MetaMask",
|
||||||
"short_name": "Metamask",
|
"short_name": "Metamask",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "https://metamask.io",
|
"author": "https://metamask.io",
|
||||||
"description": "Ethereum Browser Extension",
|
"description": "Ethereum Browser Extension",
|
||||||
|
@ -397,6 +397,7 @@ module.exports = class KeyringController extends EventEmitter {
|
|||||||
}).then((rawSig) => {
|
}).then((rawSig) => {
|
||||||
cb(null, rawSig)
|
cb(null, rawSig)
|
||||||
approvalCb(null, true)
|
approvalCb(null, true)
|
||||||
|
messageManager.confirmMsg(msgId)
|
||||||
return rawSig
|
return rawSig
|
||||||
})
|
})
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
@ -76,7 +76,7 @@ class HdKeyring extends EventEmitter {
|
|||||||
// For eth_sign, we need to sign transactions:
|
// For eth_sign, we need to sign transactions:
|
||||||
signMessage (withAccount, data) {
|
signMessage (withAccount, data) {
|
||||||
const wallet = this._getWalletForAccount(withAccount)
|
const wallet = this._getWalletForAccount(withAccount)
|
||||||
const message = ethUtil.removeHexPrefix(data)
|
const message = ethUtil.stripHexPrefix(data)
|
||||||
var privKey = wallet.getPrivateKey()
|
var privKey = wallet.getPrivateKey()
|
||||||
var msgSig = ethUtil.ecsign(new Buffer(message, 'hex'), privKey)
|
var msgSig = ethUtil.ecsign(new Buffer(message, 'hex'), privKey)
|
||||||
var rawMsgSig = ethUtil.bufferToHex(sigUtil.concatSig(msgSig.v, msgSig.r, msgSig.s))
|
var rawMsgSig = ethUtil.bufferToHex(sigUtil.concatSig(msgSig.v, msgSig.r, msgSig.s))
|
||||||
|
@ -41,12 +41,13 @@ ConfirmTxScreen.prototype.render = function () {
|
|||||||
var provider = state.provider
|
var provider = state.provider
|
||||||
var unconfTxs = state.unconfTxs
|
var unconfTxs = state.unconfTxs
|
||||||
var unconfMsgs = state.unconfMsgs
|
var unconfMsgs = state.unconfMsgs
|
||||||
|
|
||||||
var unconfTxList = txHelper(unconfTxs, unconfMsgs, network)
|
var unconfTxList = txHelper(unconfTxs, unconfMsgs, network)
|
||||||
var index = state.index !== undefined ? state.index : 0
|
var index = state.index !== undefined && unconfTxList[index] ? state.index : 0
|
||||||
var txData = unconfTxList[index] || {}
|
var txData = unconfTxList[index] || {}
|
||||||
var txParams = txData.txParams
|
var txParams = txData.params || {}
|
||||||
var isNotification = isPopupOrNotification() === 'notification'
|
var isNotification = isPopupOrNotification() === 'notification'
|
||||||
if (!txParams) return null
|
if (unconfTxList.length === 0) return null
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
@ -116,15 +117,19 @@ ConfirmTxScreen.prototype.render = function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function currentTxView (opts) {
|
function currentTxView (opts) {
|
||||||
if ('txParams' in opts.txData) {
|
const { txData } = opts
|
||||||
|
const { txParams, msgParams } = txData
|
||||||
|
|
||||||
|
if (txParams) {
|
||||||
// This is a pending transaction
|
// This is a pending transaction
|
||||||
return h(PendingTx, opts)
|
return h(PendingTx, opts)
|
||||||
} else if ('msgParams' in opts.txData) {
|
} else if (msgParams) {
|
||||||
// This is a pending message to sign
|
// This is a pending message to sign
|
||||||
return h(PendingMsg, opts)
|
return h(PendingMsg, opts)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ConfirmTxScreen.prototype.checkBalanceAgainstTx = function (txData) {
|
ConfirmTxScreen.prototype.checkBalanceAgainstTx = function (txData) {
|
||||||
|
if (!txData.txParams) return false
|
||||||
var state = this.props
|
var state = this.props
|
||||||
var address = txData.txParams.from || state.selectedAccount
|
var address = txData.txParams.from || state.selectedAccount
|
||||||
var account = state.accounts[address]
|
var account = state.accounts[address]
|
||||||
|
Loading…
Reference in New Issue
Block a user