Skip to content
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

fix: docker build #379

Merged
merged 3 commits into from
Mar 27, 2025
Merged

fix: docker build #379

merged 3 commits into from
Mar 27, 2025

Conversation

beer-1
Copy link
Member

@beer-1 beer-1 commented Mar 27, 2025

Description

Closes: #XXXX


Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

@beer-1 beer-1 self-assigned this Mar 27, 2025
@beer-1 beer-1 requested a review from a team as a code owner March 27, 2025 04:00
Copy link

coderabbitai bot commented Mar 27, 2025

📝 Walkthrough

Walkthrough

The changes refactor the keyring options for handling Ethereum Secp256k1 keys. The original implementation in options.go was removed and replaced by two new variants: one in options_ledger.go that implements ledger device detection and key creation for both Ethereum and Cosmos, and another in options_notavail.go that provides a fallback for builds without ledger support. Additionally, a ledger mock file used for testing has been removed.

Changes

File(s) Change Summary
crypto/keyring/options.go
crypto/keyring/options_ledger.go
crypto/keyring/options_notavail.go
Removed the original EthSecp256k1Option and its helper validateFlags from options.go; added new implementations in options_ledger.go for ledger device detection and key creation (supporting both Ethereum and Cosmos), and in options_notavail.go for non-CGO/ledger builds.
crypto/ledger/ledger_mock.go Removed the ledger mock file that provided a simulated Ledger device interaction for testing purposes.

Sequence Diagram(s)

sequenceDiagram
    participant App
    participant KeyringOption
    participant LedgerHandler
    participant LedgerDevice

    App->>KeyringOption: Request EthSecp256k1 configuration
    KeyringOption->>LedgerHandler: Invoke LedgerDerivation
    LedgerHandler->>LedgerDevice: Check for Ethereum ledger device
    alt Ethereum device found
        LedgerDevice-->>LedgerHandler: Return Ethereum public key
        LedgerHandler-->>KeyringOption: Return Ethereum configuration
    else Ethereum device not found
        LedgerHandler->>LedgerDevice: Check for Cosmos ledger device
        alt Cosmos device found
            LedgerDevice-->>LedgerHandler: Return Cosmos public key
            LedgerHandler-->>KeyringOption: Return Cosmos configuration
        else Neither device available
            LedgerHandler-->>KeyringOption: Return error
        end
    end
    KeyringOption-->>App: Return keyring option or error
Loading

Poem

Oh, what a change, I hop with glee,
Ledger paths rerouted, now so free!
Ethereum or Cosmos, choose your key,
Old mocks removed—spring’s code jubilee!
With a twitch of my nose and a happy ear,
I celebrate clean code with a bunny cheer!
🐇✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

github-actions bot commented Mar 27, 2025

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails

Scanned Files

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
crypto/ledger/ledger_notavail.go (1)

4-5: Clarify the intent of the added comment.
The non-functional comment // test_ledger_mock does not affect code execution, but it is unclear if this comment is intended for temporary debugging purposes or should serve as documentation. If it is only for temporary testing during the Docker build fix, consider removing it or converting it into a proper TODO note for clarity.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4bd6251 and 1e15ebf.

📒 Files selected for processing (1)
  • crypto/ledger/ledger_notavail.go (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (4)
  • GitHub Check: Build Initiad image
  • GitHub Check: golangci-lint
  • GitHub Check: Run test and upload codecov
  • GitHub Check: Analyze (go)

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
crypto/keyring/options_ledger.go (2)

28-56: Consider avoiding direct console prints for user messaging.

The code prints user-facing information (e.g., "Ethereum ledger found", error guidance) directly with fmt.Println. For better logging and user experience, a structured or leveled logger is often preferable, especially in libraries.

Changing these prints to use a standardized logging library or returning user-facing messages in an error could improve maintainability and clarity for integrators.


88-96: Runtime identification for ledger-based pubkeys seems correct.

Choosing the Ethereum or Cosmos public key type at runtime based on isCosmosLedger makes sense. However, consider logging or returning more descriptive signals if the detection is ambiguous.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Lite

📥 Commits

Reviewing files that changed from the base of the PR and between f411b4a and 008945d.

📒 Files selected for processing (4)
  • crypto/keyring/options.go (1 hunks)
  • crypto/keyring/options_ledger.go (1 hunks)
  • crypto/keyring/options_notavail.go (1 hunks)
  • crypto/ledger/ledger_mock.go (0 hunks)
💤 Files with no reviewable changes (1)
  • crypto/ledger/ledger_mock.go
🧰 Additional context used
🧬 Code Definitions (2)
crypto/keyring/options_notavail.go (2)
crypto/keyring/options_ledger.go (1)
  • EthSecp256k1Option (27-100)
crypto/keyring/options.go (2)
  • SupportedAlgorithms (16-16)
  • SupportedAlgorithmsLedger (20-20)
crypto/keyring/options_ledger.go (3)
crypto/keyring/options_notavail.go (1)
  • EthSecp256k1Option (12-17)
crypto/keyring/options.go (2)
  • SupportedAlgorithms (16-16)
  • SupportedAlgorithmsLedger (20-20)
crypto/ledger/ledger_notavail.go (1)
  • FindLedgerEthereumApp (12-14)
🔇 Additional comments (6)
crypto/keyring/options_notavail.go (2)

1-2: Validate build constraints carefully.

These build constraints (//go:build !cgo || !ledger and // +build !cgo !ledger) ensure this file is included only when CGO or ledger support is unavailable. Make sure they align with your intended fallback strategy for environments without ledger support.

Please verify that these constraints reflect your desired behavior in other build scenarios (e.g., CGO enabled but no ledger, ledger enabled with CGO, etc.).


10-17: Fallback stubs set the correct algorithm lists.

This fallback function properly sets SupportedAlgos and SupportedAlgosLedger for Ethereum secp256k1 usage when ledger support is unavailable. No issues found with the code block logic.

crypto/keyring/options.go (1)

9-9: No issues with the added import statement.

Importing "github.com/spf13/cobra" is consistent with usage in OverrideDefaultKeyType. The change is straightforward with no negative side effects.

crypto/keyring/options_ledger.go (3)

1-2: Confirm build tags match your intended ledger support matrix.

You’ve constrained this file to build when CGO and ledger support are both enabled, and mocked ledger tests are off. Ensure that all wanted real-ledger build scenarios are covered by these build tags.

Please run a test build under different conditions (e.g., enabling CGO, toggling the ledger build tag, toggling test_ledger_mock, etc.) to confirm correct file inclusion or exclusion.


57-87: Graceful fallback logic is essential.

When no Ethereum ledger is found, the code transitions to searching for a Cosmos ledger and only then fails if neither is available. This logic is correct for multi-ledger scenarios. Ensure any UI or CLI user knows that fallback to Cosmos is attempted.


102-116: Validation of coin and key types is straightforward.

The validateFlags function does a clear job checking the user’s coin/key type inputs. The error messages are user-friendly and actionable. Make sure all expected coin/key combos are documented.

@beer-1 beer-1 merged commit bfb2f8f into main Mar 27, 2025
9 of 10 checks passed
@beer-1 beer-1 deleted the fix/docker-build branch March 27, 2025 04:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant