Skip to content

Commit

Permalink
add packet flag for from staked sender
Browse files Browse the repository at this point in the history
  • Loading branch information
jedleggett authored and buffalu committed Aug 7, 2024
1 parent 009312f commit 10e8d47
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 10e8d47

Please sign in to comment.