From 64ac33754f5b961704f25f919d4b93a1ffd243f8 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 26 May 2025 13:53:10 +1000 Subject: [PATCH] Add missing argument docs We document the other to arguments already, add the missing one. --- bitcoin/src/blockdata/transaction.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bitcoin/src/blockdata/transaction.rs b/bitcoin/src/blockdata/transaction.rs index 0e64bdd3c..bea8e5bdc 100644 --- a/bitcoin/src/blockdata/transaction.rs +++ b/bitcoin/src/blockdata/transaction.rs @@ -776,6 +776,7 @@ impl Decodable for Transaction { /// /// * `fee_rate` - the fee rate of the transaction being created. /// * `input_weight_prediction` - the predicted input weight. +/// * `value` - The value of the output we are spending. /// /// # Returns ///