mirror of
https://github.com/tornadocash/tornado-classic-ui
synced 2024-02-02 15:04:09 +01:00
7 lines
264 B
JavaScript
7 lines
264 B
JavaScript
export function _checkCurrentTx({ rootGetters }, transactions) {
|
|
const currentTransactions = rootGetters['txHashKeeper/allTxsHash']
|
|
const newTransactions = transactions.filter((event) => !currentTransactions.includes(event.txHash))
|
|
|
|
return newTransactions
|
|
}
|