-
Notifications
You must be signed in to change notification settings - Fork 233
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
fix: docker build #379
Conversation
📝 WalkthroughWalkthroughThe changes refactor the keyring options for handling Ethereum Secp256k1 keys. The original implementation in Changes
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
Poem
🪧 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
CodeRabbit Configuration File (
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Files |
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: 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
📒 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)
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: 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 withfmt.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
📒 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
andSupportedAlgosLedger
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 inOverrideDefaultKeyType
. 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.
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...
!
in the type prefix if API or client breaking changeReviewers 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...