Skip to content

Commit ab4b944

Browse files
committed
refactor: useless const
1 parent 723cdb4 commit ab4b944

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

services/chronikService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,8 +616,7 @@ export class ChronikBlockchainClient {
616616
await executeAddressTriggers(broadcastTxData, tx.address.networkId)
617617
}
618618
const { amount, opReturn } = addressWithTransaction.transaction
619-
const newClientPaymentStatus = 'ADDED_TO_MEMPOOL' as ClientPaymentStatus
620-
await this.handleUpdateClientPaymentStatus(amount, opReturn, newClientPaymentStatus)
619+
await this.handleUpdateClientPaymentStatus(amount, opReturn, 'ADDED_TO_MEMPOOL' as ClientPaymentStatus)
621620
}
622621
}
623622
this.mempoolTxsBeingProcessed -= 1

0 commit comments

Comments
 (0)