chia_protocol/end_of_sub_slot_bundle.rs
1use chia_streamable_macro::streamable;
2
3use crate::ChallengeChainSubSlot;
4use crate::InfusedChallengeChainSubSlot;
5use crate::RewardChainSubSlot;
6use crate::SubSlotProofs;
7
8#[streamable]
9pub struct EndOfSubSlotBundle {
10 challenge_chain: ChallengeChainSubSlot,
11 infused_challenge_chain: Option<InfusedChallengeChainSubSlot>,
12 reward_chain: RewardChainSubSlot,
13 proofs: SubSlotProofs,
14}