You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
966666d doc: Remove wrong and redundant doxygen tag (MarcoFalke)
Pull request description:
`param@[in]` is not a valid doxygen tag. Also, no other function in this file uses the annotations, and they are redundant with the line above, so just remove them in `feerate` to fix all issues.
In other places, fix them.
ACKs for top commit:
cedwies:
ACK 966666d
janb84:
ACK 966666d
pablomartin4btc:
ACK 966666d
w0xlt:
ACK bitcoin/bitcoin@966666d
Tree-SHA512: fcb6aa75c0f03b36f3caad023854ba276e0335cf47908a77006e182633b6a68f7b7d3115ef9fb97d143ca23730def05550f970265bb1fde97594ba68e724bde9
@@ -141,13 +141,13 @@ util::Result<SelectionResult> AttemptSelection(interfaces::Chain& chain, const C
141
141
* Multiple coin selection algorithms will be run and the input set that produces the least waste
142
142
* (according to the waste metric) will be chosen.
143
143
*
144
-
* param@[in] chain The chain interface to get information on unconfirmed UTXOs bump fees
145
-
* param@[in] nTargetValue The target value
146
-
* param@[in] groups The struct containing the outputs grouped by script and divided by (1) positive only outputs and (2) all outputs (positive + negative).
147
-
* param@[in] coin_selection_params Parameters for the coin selection
144
+
* @param[in] chain The chain interface to get information on bump fees for unconfirmed UTXOs
145
+
* @param[in] nTargetValue The target value
146
+
* @param[in] groups The struct containing the outputs grouped by script and divided by (1) positive only outputs and (2) all outputs (positive + negative).
147
+
* @param[in] coin_selection_params Parameters for the coin selection
148
148
* returns If successful, a SelectionResult containing the input set
149
149
* If failed, returns (1) an empty error message if the target was not reached (general "Insufficient funds")
150
-
* or (2) an specific error message if there was something particularly wrong (e.g. a selection
150
+
* or (2) a specific error message if there was something particularly wrong (e.g. a selection
0 commit comments