dg_xch_core 1.1.0

Core library containing type/error definitions, CLVM tools, Consensus and Pool definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::blockchain::challenge_chain_subslot::ChallengeChainSubSlot;
use crate::blockchain::infused_challenge_chain_subslot::InfusedChallengeChainSubSlot;
use crate::blockchain::reward_chain_subslot::RewardChainSubSlot;
use crate::blockchain::subslot_proofs::SubSlotProofs;
use dg_xch_macros::ChiaSerial;
use serde::{Deserialize, Serialize};

#[derive(ChiaSerial, Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]
pub struct SubSlotBundle {
    pub challenge_chain: ChallengeChainSubSlot,
    pub infused_challenge_chain: Option<InfusedChallengeChainSubSlot>,
    pub reward_chain: RewardChainSubSlot,
    pub proofs: SubSlotProofs,
}