From b1eb74330c8f61889d48300fdf727cfca046ad75 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Mon, 6 Oct 2025 12:56:01 +0100 Subject: [PATCH] Fix clippy doc list item without indentation Clippy gives "error: doc list item without indentation" Add a list item with a description on where to find the missing argument information to fix the error. --- types/src/v21/wallet/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/src/v21/wallet/mod.rs b/types/src/v21/wallet/mod.rs index 3cc08bc0..3660d572 100644 --- a/types/src/v21/wallet/mod.rs +++ b/types/src/v21/wallet/mod.rs @@ -184,7 +184,7 @@ pub struct Send { /// > 1. dummy (string, required) Must be set to "" for backwards compatibility. /// > 2. amounts (json object, required) The addresses and amounts /// > { "address": amount, (numeric or string, required) The bitcoin address is the key, the numeric amount (can be string) in BTC is the value } -/// > ... +/// > 3. - 9. (optional arguments, see Bitcoin Core documentation) /// > 10. verbose (boolean, optional, default=false) If true, return extra infomration about the transaction. #[derive(Clone, Debug, PartialEq, Deserialize, Serialize)] #[cfg_attr(feature = "serde-deny-unknown-fields", serde(deny_unknown_fields))]