-
Notifications
You must be signed in to change notification settings - Fork 85
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
Make keys generate
to no longer fund
#1887
Conversation
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.
lgtm!
Oh, no deprecation warning? I was personally relying on auto funding for my tests 😅 |
@tupui this command was already outputing a deprecation message on v22, and will be removed on v23. $ stellar --version
stellar 22.3.0 (3a00de5e6c579479e943f5914f2fcfaca8426c8c)
stellar-xdr 22.1.0 (e13922970800d95b523413018b2279df42df3442)
xdr curr (529d5176f24c73eeccfa5eba481d4e89c19b1181)
$ stellar keys generate foo
⚠️ Behavior of `generate` will change in the future, and it will no longer fund by default. If you want to fund please provide `--fund` flag. If you don't need to fund your keys in the future, ignore this warning. It can be suppressed with -q flag.
✅ Key saved with alias foo in "/private/tmp/test/.stellar/identity/foo.toml"
✅ Account KeyName("foo") funded on "Test SDF Network ; September 2015" You can fund the account by using |
Thanks, I will pay more attention to the command outputs 👍 It was missing from the release notes of v22 which I read. That's how I came across this PR. [EDIT] I see |
@tupui good call! I'll let the team know so we have better documentation on deprecations and removals using the release page. |
Thank you 🙇 |
What
Previously,
--fund
flag was added, and funding by default gave a warning.In this PR
-no-fund
flag was removed, and default behavior flipped to no longer fundWhy
Closing #1407
Known limitations
Depends on #1888