From 907d37b92856921a5fe60b12319b7a551fa52846 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 18 Jul 2024 01:37:45 +0000 Subject: [PATCH] zcash_client_backend: Fix `cargo doc` without all features --- zcash_client_backend/src/data_api/wallet/input_selection.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zcash_client_backend/src/data_api/wallet/input_selection.rs b/zcash_client_backend/src/data_api/wallet/input_selection.rs index ad9b56a03..c745a0a8a 100644 --- a/zcash_client_backend/src/data_api/wallet/input_selection.rs +++ b/zcash_client_backend/src/data_api/wallet/input_selection.rs @@ -333,6 +333,8 @@ impl GreedyInputSelector { /// computing a transaction balance if an [`EphemeralBalance::Output`] value is provided for /// its ephemeral balance, or the resulting [`GreedyInputSelector`] will return an error when /// attempting to construct a transaction proposal that requires such an output. + /// + /// [`EphemeralBalance::Output`]: crate::fees::EphemeralBalance::Output pub fn new(change_strategy: ChangeT, dust_output_policy: DustOutputPolicy) -> Self { GreedyInputSelector { change_strategy,