whisky-csl 1.0.4

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::{TxIn, WError};

use super::TxParser;

impl TxParser {
    pub fn inputs(&mut self) -> Result<Vec<TxIn>, WError> {
        Ok(vec![])
    }
}