-
Notifications
You must be signed in to change notification settings - Fork 254
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
Extract system-transaction crate #3834
Extract system-transaction crate #3834
Conversation
If this PR represents a change to the public RPC API:
Thank you for keeping the RPC clients in sync with the server API @kevinheavey. |
e57d501
to
497b8d2
Compare
29485ec
to
b609c93
Compare
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.
sdk/Cargo.toml
Outdated
@@ -175,6 +175,7 @@ solana-signature = { workspace = true, features = [ | |||
"verify", | |||
], optional = true } | |||
solana-signer = { workspace = true, optional = true } | |||
solana-system-transaction = { workspace = true } |
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.
Ah sorry, I missed this -- the new crate should be optional and added under the "full" feature. That's why CI is failing to build sdk
in BPF
automerge label removed due to a CI failure |
Problem
solana_sdk::system_transaction
imposes a solana-sdk dep in various placesSummary of Changes
Move to its own crate and re-export with deprecation
This branches off #3634 so that needs to be merged first