-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: remove go-tss imports from observer/types #2799
Conversation
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughWalkthroughThe changes involve refactoring the node conversion logic within the codebase. The Changes
Sequence Diagram(s)sequenceDiagram
participant CLI as Command Line Interface
participant Observer as Observer Module
participant Utils as Utils Package
participant Client as Client Module
CLI->>Observer: CmdVoteBlame()
Observer->>Utils: ConvertNodes(nodes)
Utils-->>Observer: Converted Nodes
Observer-->>CLI: Result
Client->>Observer: PostVoteBlameData()
Observer->>Utils: ConvertNodes(blame.BlameNodes)
Utils-->>Observer: Converted Blame Nodes
Observer-->>Client: Result
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
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
Documentation and Community
|
78fca03
to
8dc8c41
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #2799 +/- ##
===========================================
- Coverage 66.62% 66.60% -0.02%
===========================================
Files 370 369 -1
Lines 20735 20727 -8
===========================================
- Hits 13814 13806 -8
Misses 6283 6283
Partials 638 638
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 3
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files selected for processing (4)
- x/observer/client/cli/tx_vote_blame.go (2 hunks)
- x/observer/utils/utils.go (1 hunks)
- x/observer/utils/utils_test.go (2 hunks)
- zetaclient/zetacore/client_vote.go (2 hunks)
Files skipped from review due to trivial changes (1)
- x/observer/utils/utils_test.go
Additional context used
Path-based instructions (3)
x/observer/utils/utils.go (1)
Pattern
**/*.go
: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.x/observer/client/cli/tx_vote_blame.go (1)
Pattern
**/*.go
: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.zetaclient/zetacore/client_vote.go (1)
Pattern
**/*.go
: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.
8dc8c41
to
1ea3416
Compare
ac5787b
to
d26230f
Compare
d26230f
to
f36588a
Compare
Part of #2798. Should resolve this issue:
Summary by CodeRabbit
New Features
Bug Fixes
Refactor
Tests