fix: get_all_completed_transactions limit issues#7267
Conversation
WalkthroughThe update changes the Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant WalletGrpcServer
participant TransactionService
Client->>WalletGrpcServer: get_all_completed_transactions(req)
WalletGrpcServer->>TransactionService: get_completed_transactions(limit=0)
WalletGrpcServer->>TransactionService: get_cancelled_completed_transactions(limit=0)
TransactionService-->>WalletGrpcServer: List of transactions
WalletGrpcServer-->>Client: Filtered and paginated transaction list
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🧰 Additional context used🧠 Learnings (1)applications/minotari_console_wallet/src/grpc/wallet_grpc_server.rs (3)⏰ Context from checks skipped due to timeout of 90000ms (7)
🔇 Additional comments (3)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Test Results (CI) 3 files 126 suites 51m 45s ⏱️ For more details on these failures, see this check. Results for commit b614054. |
Test Results (Integration tests) 2 files 1 errors 1 suites 18m 34s ⏱️ For more details on these parsing errors and failures, see this check. Results for commit b614054. |
* development: chore: fix regression bug (tari-project#7276) feat!: expand gRPC readiness status to contain current processed block info (tari-project#7262) fix!: payref migration and indexes, add grpc query via output hash (tari-project#7266) feat: auto zero value coinbase reward calculation (tari-project#7259) feat!: improve grpc token supply (tari-project#7261) chore: new release v4.7.0-pre.0 (tari-project#7268) fix: get_all_completed_transactions limit issues (tari-project#7267) fix: ledger builds (tari-project#7260) feat: offline signing (tari-project#7122) test: verify accumulated difficulty (tari-project#7243)
Description
Limit filter was applied twice:
2 We apply offset and limit filter on merged records, which means: offset 20, limit 20. returns 0 records
Summary by CodeRabbit