Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 57 minutes and 31 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (7)
📒 Files selected for processing (7)
📝 WalkthroughWalkthroughMove Hive transaction/crypto/call implementations into Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant SDK as "@ecency/sdk (Transaction & callRPC)"
participant Hive as "Hive Node(s)"
Client->>SDK: build transaction (operations)
Client->>SDK: sign(keys)
SDK->>Hive: condenser_api.broadcast_transaction(tx)
Hive-->>SDK: RPC response (tx accepted or duplicate)
alt checkStatus enabled
SDK->>Hive: transaction_status_api.find_transaction(tx_id) [polling]
Hive-->>SDK: status (confirmed|pending|failed)
SDK-->>Client: BroadcastResult { tx_id, status }
else no checkStatus
SDK-->>Client: BroadcastResult { tx_id, status: "unknown" }
end
Estimated code review effort🎯 5 (Critical) | ⏱️ ~120 minutes Possibly related PRs
Suggested labels
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
Summary by CodeRabbit
New Features
Chores