chia-protocol 0.2.14

Chia network protocol message types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use chia_streamable_macro::Streamable;

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

streamable_struct! (EndOfSubSlotBundle {
    challenge_chain: ChallengeChainSubSlot,
    infused_challenge_chain: Option<InfusedChallengeChainSubSlot>,
    reward_chain: RewardChainSubSlot,
    proofs: SubSlotProofs,
});