1
2
3
4
5
6
7
8
9
10
use crate::coin::Coin;
use chia_streamable_macro::streamable;

#[streamable]
#[derive(Copy)]
pub struct CoinState {
    coin: Coin,
    spent_height: Option<u32>,
    created_height: Option<u32>,
}