chik_protocol/
pool_target.rs

1use chik_streamable_macro::streamable;
2
3use crate::Bytes32;
4
5#[streamable]
6pub struct PoolTarget {
7    puzzle_hash: Bytes32,
8    max_height: u32, // A max height of 0 means it is valid forever
9}