You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: Found argument '--outfile' which wasn't expected, or isn't valid in this context
Did you mean '--no-outfile'?
If you tried to supply `--outfile` as a value rather than a flag, use `-- --outfile`
When using "solana-keygen grind" there is no option to assign an output file. But one for --no-output file.
It seems the rust code allows for an output file but is not implemented as a flag in the cli for the grind command.
This feature works fine using the "new" command just not for "grind".
I am working on some bash scripting to automate and create config files for tokens/keys/ and other features.
Proposed Solution
line 123 - 135 of keygen.rs seems to address the mechanics of it.
line 512 seems to implement the function for the "new" command.
line 547 seems to implement it for key recovery.
Can we add this flag to grind also.
Thanks.
The text was updated successfully, but these errors were encountered:
Problem
flag --outfile doesnt work with "solana-keygen grind"
solana-keygen grind --outfile example.json gives error
When using "solana-keygen grind" there is no option to assign an output file. But one for --no-output file.
It seems the rust code allows for an output file but is not implemented as a flag in the cli for the grind command.
This feature works fine using the "new" command just not for "grind".
I am working on some bash scripting to automate and create config files for tokens/keys/ and other features.
Proposed Solution
line 123 - 135 of keygen.rs seems to address the mechanics of it.
line 512 seems to implement the function for the "new" command.
line 547 seems to implement it for key recovery.
Can we add this flag to grind also.
Thanks.
The text was updated successfully, but these errors were encountered: