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