chia_protocol/
coin_state.rs

1use crate::coin::Coin;
2use chia_streamable_macro::streamable;
3
4#[streamable]
5#[derive(Copy)]
6pub struct CoinState {
7    coin: Coin,
8    spent_height: Option<u32>,
9    created_height: Option<u32>,
10}