chia_protocol/
end_of_sub_slot_bundle.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
use chia_streamable_macro::streamable;

use crate::ChallengeChainSubSlot;
use crate::InfusedChallengeChainSubSlot;
use crate::RewardChainSubSlot;
use crate::SubSlotProofs;

#[streamable]
pub struct EndOfSubSlotBundle {
    challenge_chain: ChallengeChainSubSlot,
    infused_challenge_chain: Option<InfusedChallengeChainSubSlot>,
    reward_chain: RewardChainSubSlot,
    proofs: SubSlotProofs,
}