whisky-csl 1.0.2

Wrapper around the cardano-serialization-lib for easier transaction building, heavily inspired by cardano-cli APIs
Documentation
1
2
3
4
5
6
7
8
9
use whisky_common::{Datum, WError};

use super::TxParser;

impl TxParser {
    pub fn change_datum(&mut self) -> Result<Option<Datum>, WError> {
        Ok(None)
    }
}