Skip to content

Commit

Permalink
Add packet flag for from staked sender (#655)
Browse files Browse the repository at this point in the history
Co-authored-by: Jed <4679729+jedleggett@users.noreply.github.com>
  • Loading branch information
buffalu and jedleggett committed Sep 6, 2024
1 parent 80b5466 commit 9136e1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
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

0 comments on commit 9136e1b

Please sign in to comment.