diff --git a/bindings/core/src/method/wallet.rs b/bindings/core/src/method/wallet.rs index 2be9efb40f..8b374f8952 100644 --- a/bindings/core/src/method/wallet.rs +++ b/bindings/core/src/method/wallet.rs @@ -45,7 +45,7 @@ use crate::OmittedDebug; #[non_exhaustive] pub enum WalletMethod { /// Returns the accounts of the wallet. - /// Expected response: [`OutputsWithExtendedMetadata`](crate::Response::OutputsWithExtendedMetadata) + /// Expected response: [`OutputsWithData`](crate::Response::OutputsWithData) Accounts, /// Backup storage. Password must be the current one, when Stronghold is used as SecretManager. /// Expected response: [`Ok`](crate::Response::Ok) @@ -199,13 +199,13 @@ pub enum WalletMethod { bip_path: Option, }, /// Returns the implicit accounts of the wallet. - /// Expected response: [`OutputsWithExtendedMetadata`](crate::Response::OutputsWithExtendedMetadata) + /// Expected response: [`OutputsWithData`](crate::Response::OutputsWithData) ImplicitAccounts, /// Returns all incoming transactions of the wallet. /// Expected response: [`Transactions`](crate::Response::Transactions) IncomingTransactions, /// Returns all outputs of the wallet. - /// Expected response: [`OutputsWithExtendedMetadata`](crate::Response::OutputsWithExtendedMetadata) + /// Expected response: [`OutputsWithData`](crate::Response::OutputsWithData) #[serde(rename_all = "camelCase")] Outputs { filter_options: Option }, /// Returns all pending transactions of the wallet. @@ -452,7 +452,7 @@ pub enum WalletMethod { /// Expected response: [`Transactions`](crate::Response::Transactions) Transactions, /// Returns all unspent outputs of the wallet - /// Expected response: [`OutputsWithExtendedMetadata`](crate::Response::OutputsWithExtendedMetadata) + /// Expected response: [`OutputsWithData`](crate::Response::OutputsWithData) #[serde(rename_all = "camelCase")] UnspentOutputs { filter_options: Option }, /// Emits an event for testing if the event system is working