Format comments

Co-authored-by: Kris Nuttycombe <kris@nutty.land>
This commit is contained in:
Gygaxis Vainhardt 2022-12-08 17:23:35 -04:00 committed by Hazel OHearn
parent c34632746f
commit cd8a39bd0c
No known key found for this signature in database
GPG Key ID: 6D7E97BEE54A57C0
1 changed files with 4 additions and 2 deletions

View File

@ -345,12 +345,14 @@ impl Builder {
Ok(())
}
/// Returns the action spend components that will be produced by the transaction being constructed
/// Returns the action spend components that will be produced by the
/// transaction being constructed
pub fn spends(&self) -> &Vec<impl InputView<()>> {
&self.spends
}
/// Returns the action output components that will be produced by the transaction being constructed
/// Returns the action output components that will be produced by the
/// transaction being constructed
pub fn outputs(&self) -> &Vec<impl OutputView> {
&self.recipients
}