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

streamable_struct! (CoinState {
    coin: Coin,
    spent_height: Option<u32>,
    created_height: Option<u32>,
});