mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix tx selecting bug
This commit is contained in:
parent
1dfcc54381
commit
5cc934f18c
@ -472,3 +472,4 @@ function forwardCarrat () {
|
|||||||
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,8 +43,8 @@ ConfirmTxScreen.prototype.render = function () {
|
|||||||
unapprovedMsgs, unapprovedPersonalMsgs } = props
|
unapprovedMsgs, unapprovedPersonalMsgs } = props
|
||||||
|
|
||||||
var unconfTxList = txHelper(unapprovedTxs, unapprovedMsgs, unapprovedPersonalMsgs, network)
|
var unconfTxList = txHelper(unapprovedTxs, unapprovedMsgs, unapprovedPersonalMsgs, network)
|
||||||
var index = props.index !== undefined && unconfTxList[index] ? props.index : 0
|
|
||||||
var txData = unconfTxList[index] || {}
|
var txData = unconfTxList[props.index] || {}
|
||||||
var txParams = txData.params || {}
|
var txParams = txData.params || {}
|
||||||
var isNotification = isPopupOrNotification() === 'notification'
|
var isNotification = isPopupOrNotification() === 'notification'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user