Skip to content

Commit

Permalink
add packet flag for staked node
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalu committed Nov 8, 2024
1 parent 5b10a31 commit 1e9bb98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/benches/proto_to_packet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ fn get_proto_packet(i: u8) -> PbPacket {
repair: false,
simple_vote_tx: false,
tracer_packet: false,
from_staked_node: false,
}),
sender_stake: 0,
}),
Expand Down
6 changes: 6 additions & 0 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ pub fn proto_packet_to_packet(p: jito_protos::proto::packet::Packet) -> Packet {
if flags.repair {
packet.meta_mut().flags.insert(PacketFlags::REPAIR);
}
if flags.from_staked_node {
packet
.meta_mut()
.flags
.insert(PacketFlags::FROM_STAKED_NODE);
}
}
}
packet
Expand Down
2 changes: 1 addition & 1 deletion jito-protos/protos

0 comments on commit 1e9bb98

Please sign in to comment.