From cd8a39bd0c79561c6be235dccfe308a7ba05e861 Mon Sep 17 00:00:00 2001 From: Gygaxis Vainhardt Date: Thu, 8 Dec 2022 17:23:35 -0400 Subject: [PATCH] Format comments Co-authored-by: Kris Nuttycombe --- src/builder.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/builder.rs b/src/builder.rs index 96ef4cb0..ab4f56c1 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -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> { &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 { &self.recipients }