initializeTokenizationService creates and configures the tokenization service
(config *config.Configuration)
| 89 | |
| 90 | // IsInflightTransaction reports whether a transaction is an inflight transaction. |
| 91 | func IsInflightTransaction(transaction *model.Transaction) bool { |
| 92 | return core.IsInflightTransaction(transaction) |
| 93 | } |
| 94 | |
| 95 | // NewLineageOutboxProcessor creates the lineage outbox worker. |
| 96 | func NewLineageOutboxProcessor(service *LedgerForge) *LineageOutboxProcessor { |
| 97 | return core.NewLineageOutboxProcessor(service) |
| 98 | } |
| 99 | |
| 100 | // NewQueuedTransactionRecoveryProcessor creates the queued-transaction recovery worker. |
| 101 | func NewQueuedTransactionRecoveryProcessor(service *LedgerForge) *QueuedTransactionRecoveryProcessor { |
no test coverage detected