We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LedgerClient
This will make it more flexible.
Essentially, the signature is currently:
pub trait LedgerClient<Datum, Redeemer>: Send + Sync { ... async fn outputs_at_address(&self, address: &Address) -> LedgerClientResult<Vec<Output<Datum>>>; ... async fn issue(&self, tx: Transaction<Datum, Redeemer>) -> LedgerClientResult<()>;
and we can make it
pub trait LedgerClient: Send + Sync { ... async fn outputs_at_address<Datum>(&self, address: &Address) -> LedgerClientResult<Vec<Output<Datum>>>; ... async fn issue<Datum, Redeemer>(&self, tx: Transaction<Datum, Redeemer>) -> LedgerClientResult<()>;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This will make it more flexible.
Essentially, the signature is currently:
and we can make it
The text was updated successfully, but these errors were encountered: