From b006f64c94bc05523a06c6f843a7a6d5cea14b8d Mon Sep 17 00:00:00 2001 From: kcw-grunt Date: Sun, 26 Nov 2023 14:55:34 -0500 Subject: [PATCH] added notes to the BRCreateTransactionOutputs Signed-off-by: kcw-grunt --- BRWallet.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BRWallet.c b/BRWallet.c index 11ae36da7..4d31b0ed2 100644 --- a/BRWallet.c +++ b/BRWallet.c @@ -550,8 +550,11 @@ BRTransaction *BRWalletCreateTransaction(BRWallet *wallet, uint64_t amount, cons return BRWalletCreateTxForOutputs(wallet, &o, 1); } -// returns an unsigned transaction that satisifes the given transaction outputs -// result must be freed by calling BRTransactionFree() +/// Description: +/// returns an unsigned transaction that satisifes the given transaction outputs +/// result must be freed by calling BRTransactionFree() +/// Parameters +/// returns Transaction BRTransaction *BRWalletCreateTxForOutputs(BRWallet *wallet, const BRTxOutput outputs[], size_t outCount) { BRTransaction *tx, *transaction = BRTransactionNew();