Fix outdated add-genesis-account command in instantiate testnet guide#2071
Fix outdated add-genesis-account command in instantiate testnet guide#2071
Conversation
…d test flag Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
|
hmm it looks like the keyring-backend isn't the issue @copilot |
|
please resume @copilot |
|
resume @copilot |
Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
You're absolutely right - I reverted my incorrect change. The Warning Firewall rules blocked me from connecting to one or more addressesI tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addressesI tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
|
fix based on this thanks @copilot |
Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
... Fixed! Updated both files to use the correct Warning Firewall rules blocked me from connecting to one or more addressesI tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
|
remove the extra helper content you added @copilot -- just fix cmds |
Co-authored-by: jcstein <46639943+jcstein@users.noreply.github.com>
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community 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 (
|
The
add-genesis-accountcommand in the testnet instantiation guide was using an incorrect flag that caused the command to fail with an "unknown command" error.Issue:
The command
celestia-appd add-genesis-account $KEY_NAME $TIA_AMOUNT --keyring-backend testwas failing with:Root cause:
The
--keyring-backend testflag should not be passed to theadd-genesis-accountcommand itself. This flag is valid for other commands likekeys addandgentx, but not foradd-genesis-account.Solution:
Removed the
--keyring-backend testflag from theadd-genesis-accountcommand to align with the correct format shown in the celestia-app-commands.md documentation:The
--keyring-backend testflag is still correctly used in other commands where it belongs (key creation and gentx generation).Fixes #2057.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.