We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related #2475.
A new config item was added in #2475 -
owner_api_listen_port
We need to be able to safely handle the case where this is missing (i.e. all existing wallets).
Otherwise the wallet fails to startup successfully with a missing field error.
missing field
The text was updated successfully, but these errors were encountered:
Not sure if the solution here is to recreate the config file (and fill in any missing values), or to safely handle this value as optional.
@yeastplume What's the recommended fix here? I know you've worked on some reading/rewriting config files stuff.
Sorry, something went wrong.
Note: workaround is to add it manually to grin-wallet.toml -
grin-wallet.toml
owner_api_listen_port = 3420
for backwards compat it needs to be an Option in the internal struct, then have something set it to the default value if it’s missing when read
No branches or pull requests
Related #2475.
A new config item was added in #2475 -
We need to be able to safely handle the case where this is missing (i.e. all existing wallets).
Otherwise the wallet fails to startup successfully with a
missing field
error.The text was updated successfully, but these errors were encountered: