mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix empty sign message bug
This commit is contained in:
parent
0fd955d636
commit
4f78ae56b2
@ -35,7 +35,7 @@ ConfirmTxScreen.prototype.render = function () {
|
||||
var unconfMsgs = state.unconfMsgs
|
||||
var unconfTxList = txHelper(unconfTxs, unconfMsgs)
|
||||
var index = state.index !== undefined ? state.index : 0
|
||||
var txData = unconfTxList[index] || {}
|
||||
var txData = unconfTxList[index] || unconfTxList[0] || {}
|
||||
|
||||
return (
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user