classic-ui/modules/account/store/actions/decryptNotes/checkCurrentTx.js
2022-10-13 15:50:29 +02:00

7 lines
270 B
JavaScript

export function _checkCurrentTx({ rootGetters }, transactions) {
const currentTransactions = rootGetters['txHashKeeper/allTxsHash']
const newTransactions = transactions.filter((event) => !currentTransactions.includes(event.txHash))
return newTransactions
}