mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-11 01:28:17 +03:00
b084813b12
* Avoid importing `test_constants` as it takes a long time. * Factor out `parse_*` functions. * First crack at refactoring `Streamable.parse`. * Don't add `_parse_functions` attribute to `Streamable`. This no longer requires an extra `_parse_functions` attribute on a `Streamable`, as it may be confusing serializers or other functions that use `__annotations__`. * Fix lint problems with `black`. * Fix `parse_tuple`. * Defer some parsing failures to parse time rather than class-creation time. * Tidy up & remove some obsolete stuff. * Decorate `RequestBlocks` as `streamable`. * Fix wrong uses of Streamable class Revert an earlier commit and error out on class creation in case a Streamable subclass is instantiated incorrectly, e.g. containing a non-serializable member. Fix cases where Streamable parent class was forgotten. * Fix wrong types when creating DerivationRecord and WalletCoinRecord * additional unit tests for streamable parsers * add type annotations (#3222) Co-authored-by: Rostislav <rostislav@users.noreply.github.com> Co-authored-by: arvidn <arvid@libtorrent.org>
92 lines
3.0 KiB
Python
92 lines
3.0 KiB
Python
from dataclasses import dataclass
|
|
from typing import List, Optional, Tuple
|
|
|
|
from chia.types.blockchain_format.foliage import Foliage
|
|
from chia.types.blockchain_format.reward_chain_block import RewardChainBlock, RewardChainBlockUnfinished
|
|
from chia.types.blockchain_format.sized_bytes import bytes32
|
|
from chia.types.blockchain_format.sub_epoch_summary import SubEpochSummary
|
|
from chia.types.blockchain_format.vdf import VDFInfo, VDFProof
|
|
from chia.types.end_of_slot_bundle import EndOfSubSlotBundle
|
|
from chia.util.ints import uint8, uint32, uint64, uint128
|
|
from chia.util.streamable import Streamable, streamable
|
|
|
|
"""
|
|
Protocol between timelord and full node.
|
|
Note: When changing this file, also change protocol_message_types.py, and the protocol version in shared_protocol.py
|
|
"""
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class NewPeakTimelord(Streamable):
|
|
reward_chain_block: RewardChainBlock
|
|
difficulty: uint64
|
|
deficit: uint8
|
|
sub_slot_iters: uint64 # SSi in the slot where NewPeak has been infused
|
|
sub_epoch_summary: Optional[
|
|
SubEpochSummary
|
|
] # If NewPeak is the last slot in epoch, the next slot should include this
|
|
previous_reward_challenges: List[Tuple[bytes32, uint128]]
|
|
last_challenge_sb_or_eos_total_iters: uint128
|
|
passes_ses_height_but_not_yet_included: bool
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class NewUnfinishedBlockTimelord(Streamable):
|
|
reward_chain_block: RewardChainBlockUnfinished # Reward chain trunk data
|
|
difficulty: uint64
|
|
sub_slot_iters: uint64 # SSi in the slot where block is infused
|
|
foliage: Foliage # Reward chain foliage data
|
|
sub_epoch_summary: Optional[SubEpochSummary] # If this is the last slot in epoch, the next slot should include this
|
|
# This is the last thing infused in the reward chain before this signage point.
|
|
# The challenge that the SP reward chain VDF is based off of, or in the case of sp index 0, the previous infusion
|
|
rc_prev: bytes32
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class NewInfusionPointVDF(Streamable):
|
|
unfinished_reward_hash: bytes32
|
|
challenge_chain_ip_vdf: VDFInfo
|
|
challenge_chain_ip_proof: VDFProof
|
|
reward_chain_ip_vdf: VDFInfo
|
|
reward_chain_ip_proof: VDFProof
|
|
infused_challenge_chain_ip_vdf: Optional[VDFInfo]
|
|
infused_challenge_chain_ip_proof: Optional[VDFProof]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class NewSignagePointVDF(Streamable):
|
|
index_from_challenge: uint8
|
|
challenge_chain_sp_vdf: VDFInfo
|
|
challenge_chain_sp_proof: VDFProof
|
|
reward_chain_sp_vdf: VDFInfo
|
|
reward_chain_sp_proof: VDFProof
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class NewEndOfSubSlotVDF(Streamable):
|
|
end_of_sub_slot_bundle: EndOfSubSlotBundle
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class RequestCompactProofOfTime(Streamable):
|
|
new_proof_of_time: VDFInfo
|
|
header_hash: bytes32
|
|
height: uint32
|
|
field_vdf: uint8
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
@streamable
|
|
class RespondCompactProofOfTime(Streamable):
|
|
vdf_info: VDFInfo
|
|
vdf_proof: VDFProof
|
|
header_hash: bytes32
|
|
height: uint32
|
|
field_vdf: uint8
|