check if there as a pending transaction before marking transaction as a cancellation one
This commit is contained in:
parent
2f81edbb8e
commit
ab7fab365f
|
@ -79,7 +79,10 @@ export type BatchProcessTxsProps = OutgoingTxs & {
|
||||||
const extractCancelAndOutgoingTxs = (safeAddress: string, outgoingTxs: TxServiceModel[]): OutgoingTxs => {
|
const extractCancelAndOutgoingTxs = (safeAddress: string, outgoingTxs: TxServiceModel[]): OutgoingTxs => {
|
||||||
return outgoingTxs.reduce(
|
return outgoingTxs.reduce(
|
||||||
(acc, transaction) => {
|
(acc, transaction) => {
|
||||||
if (isCancelTransaction(transaction, safeAddress)) {
|
if (
|
||||||
|
isCancelTransaction(transaction, safeAddress) &&
|
||||||
|
outgoingTxs.find((tx) => tx.nonce === transaction.nonce && !isCancelTransaction(tx, safeAddress))
|
||||||
|
) {
|
||||||
if (!isNaN(Number(transaction.nonce))) {
|
if (!isNaN(Number(transaction.nonce))) {
|
||||||
acc.cancellationTxs[transaction.nonce] = transaction
|
acc.cancellationTxs[transaction.nonce] = transaction
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue