whisky_csl/tx_parser/
change_datum.rs

1use whisky_common::{Datum, WError};
2
3use super::TxParser;
4
5impl TxParser {
6    pub fn change_datum(&mut self) -> Result<Option<Datum>, WError> {
7        Ok(None)
8    }
9}