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

use super::TxParser;

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