-
Notifications
You must be signed in to change notification settings - Fork 4.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
Introduce automatic ABI maintenance mechanism (2/2; rollout) #8012
Changes from all commits
2aa87dc
3e604d9
a6de98b
cc4a5f7
28b8af0
d9369e8
aed8c47
0ad297e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../sdk/build.rs |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -288,7 +288,7 @@ impl fmt::Debug for Locality { | |
} | ||
} | ||
|
||
#[derive(Debug, Default, Deserialize, Serialize)] | ||
#[derive(Debug, Default, Deserialize, Serialize, AbiExample)] | ||
pub struct PruneData { | ||
/// Pubkey of the node that sent this prune data | ||
pub pubkey: Pubkey, | ||
|
@@ -357,7 +357,8 @@ pub fn make_accounts_hashes_message( | |
} | ||
|
||
// TODO These messages should go through the gpu pipeline for spam filtering | ||
#[derive(Serialize, Deserialize, Debug)] | ||
#[frozen_abi(digest = "6qRS1ZwydpdSqzeyRdDvn5uwfDdFYkuUz4K4jSkd1oFW")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI: @carllin When you change any |
||
#[derive(Serialize, Deserialize, Debug, AbiEnumVisitor, AbiExample)] | ||
#[allow(clippy::large_enum_variant)] | ||
enum Protocol { | ||
/// Gossip protocol messages | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../sdk/build.rs |
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.
here: #31833