Merge branch 'master' of github.com:davidp94/metamask-extension into rejectallunapproved

This commit is contained in:
Kevin Serrano 2017-09-07 13:20:14 -07:00
commit 34e7bb5015
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
2 changed files with 23 additions and 0 deletions

View File

@ -104,6 +104,7 @@ var actions = {
txError: txError,
nextTx: nextTx,
previousTx: previousTx,
cancelAllTx: cancelAllTx,
viewPendingTx: viewPendingTx,
VIEW_PENDING_TX: 'VIEW_PENDING_TX',
// app messages
@ -457,6 +458,16 @@ function cancelTx (txData) {
}
}
function cancelAllTx (txsData) {
return (dispatch) => {
txsData.forEach((txData, i) => {
background.cancelTransaction(txData.id, () => {
dispatch(actions.completedTx(txData.id))
i === txsData.length - 1 ? dispatch(actions.goHome()) : null
})
})
}
}
//
// initialize screen
//

View File

@ -89,6 +89,18 @@ ConfirmTxScreen.prototype.render = function () {
}),
]),
h('h3', {
style: {
alignSelf: 'flex-end',
display: unconfTxList.length > 1 ? 'block' : 'none',
},
}, [
h('i.fa.fa-trash.fa-lg.cursor-pointer', {
title: 'Cancel All Pending Transactions',
onClick: () => props.dispatch(actions.cancelAllTx(unconfTxList)),
}),
]),
warningIfExists(props.warning),
currentTxView({