-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
manifest command CLI format: publicMalformed error (Version: 1.5.0-rc1) #3317
Comments
Looking at the code, we land at The function calls The input you provided certain is base58, so it should work. But it doesn't:
The problem is that it only attempts to account This function is called from several places so it can't just be arbitrarily changed. My suggestion would to add a new parameter to the |
The existing code attempts to validate the provided node public key using a function that assumes that the encoded public key is for an account. This causes the parsing to fail. This commit fixes XRPLF#3317 by letting the caller specify the type of the public key being checked.
The existing code attempts to validate the provided node public key using a function that assumes that the encoded public key is for an account. This causes the parsing to fail. This commit fixes XRPLF#3317 by letting the caller specify the type of the public key being checked.
The existing code attempts to validate the provided node public key using a function that assumes that the encoded public key is for an account. This causes the parsing to fail. This commit fixes XRPLF#3317 by letting the caller specify the type of the public key being checked.
The existing code attempts to validate the provided node public key using a function that assumes that the encoded public key is for an account. This causes the parsing to fail. This commit fixes XRPLF#3317 by letting the caller specify the type of the public key being checked.
The existing code attempts to validate the provided node public key using a function that assumes that the encoded public key is for an account. This causes the parsing to fail. This commit fixes XRPLF#3317 by letting the caller specify the type of the public key being checked.
The
manifest
command introduced in #3197 doesn't seem to work when I use it on the commandline.Issue Description
I successfully used the
manifest
command in both WebSocket and JSON-RPC to get the manifest info for alloy.ee using my server, for example JSON-RPC:However, the CLI syntax consistently gives me an error message.
Steps to Reproduce
(Putting the key in quotes or not makes no difference.)
Expected Result
The response should match the JSON-RPC response, like this:
Actual Result
A
publicMalformed
error such as this:Environment
Arch Linux x86_64, self-compiled rippled v1.5.0-rc1
Synced to mainnet.
The text was updated successfully, but these errors were encountered: