Updates the status of a transaction
(cxt context.Context, limit, offset int)
| 53 | GetExistingTransactionReferences(ctx context.Context, references []string) (map[string]struct{}, error) // Gets existing transaction references in bulk |
| 54 | UpdateTransactionStatus(cxt context.Context, id string, status string) error // Updates the status of a transaction |
| 55 | GetAllTransactions(cxt context.Context, limit, offset int) ([]model.Transaction, error) // Retrieves all transactions |
| 56 | GetTotalCommittedTransactions(cxt context.Context, parentID string) (*big.Int, error) // Gets the total count of committed transactions for a parent |
| 57 | GetTransactionsPaginated(ctx context.Context, id string, batchSize int, offset int64) ([]*model.Transaction, error) // Retrieves transactions in a paginated manner |
| 58 | GetInflightTransactionsByParentID(ctx context.Context, parentTransactionID string, batchSize int, offset int64) ([]*model.Transaction, error) // Retrieves inflight transactions by parent ID |
no outgoing calls
no test coverage detected