Rename `get_reserved_ephemeral_addresses` to `get_known_ephemeral_addresses`

and change the `TransparentAddressMetadata` in its result map to not be
optional.

Signed-off-by: Daira-Emma Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira-Emma Hopwood 2024-07-03 17:02:47 +01:00
parent 01ff201ffb
commit b63ff5bfcd
4 changed files with 17 additions and 18 deletions

View File

@ -53,7 +53,7 @@ funds to those addresses. See [ZIP 320](https://zips.z.cash/zip-0320) for detail
have changed as a consequence of this extraction; please see the `zip321`
CHANGELOG for details.
- `zcash_client_backend::data_api`:
- `WalletRead` has new `get_reserved_ephemeral_addresses` and
- `WalletRead` has new `get_known_ephemeral_addresses` and
`get_transparent_address_metadata` methods.
- `WalletWrite` has a new `reserve_next_n_ephemeral_addresses` method.
- `error::Error` has a new `Address` variant.

View File

@ -897,7 +897,7 @@ pub trait WalletRead {
/// been derived under this account. Wallets should scan the chain for UTXOs sent to
/// these receivers.
///
/// Use [`Self::get_reserved_ephemeral_addresses`] to obtain the ephemeral transparent
/// Use [`Self::get_known_ephemeral_addresses`] to obtain the ephemeral transparent
/// receivers.
#[cfg(feature = "transparent-inputs")]
fn get_transparent_receivers(
@ -929,8 +929,8 @@ pub trait WalletRead {
/// if let Some(result) = self.get_transparent_receivers(account)?.get(address) {
/// return Ok(result.clone());
/// }
/// if let Some(result) = self.get_reserved_ephemeral_addresses(account, false)?.get(address) {
/// return Ok(result.clone());
/// if let Some(result) = self.get_known_ephemeral_addresses(account, false)?.get(address) {
/// return Ok(Some(result.clone()));
/// }
/// Ok(None)
/// ```
@ -948,10 +948,10 @@ pub trait WalletRead {
return Ok(result.clone());
}
if let Some(result) = self
.get_reserved_ephemeral_addresses(account, false)?
.get_known_ephemeral_addresses(account, false)?
.get(address)
{
return Ok(result.clone());
return Ok(Some(result.clone()));
}
Ok(None)
}
@ -991,11 +991,11 @@ pub trait WalletRead {
/// In all cases, the wallet should re-shield the unspent outputs, in a separate
/// transaction per ephemeral address, before re-spending the funds.
#[cfg(feature = "transparent-inputs")]
fn get_reserved_ephemeral_addresses(
fn get_known_ephemeral_addresses(
&self,
_account: Self::AccountId,
_for_detection: bool,
) -> Result<HashMap<TransparentAddress, Option<TransparentAddressMetadata>>, Self::Error> {
) -> Result<HashMap<TransparentAddress, TransparentAddressMetadata>, Self::Error> {
Ok(HashMap::new())
}
}
@ -1991,12 +1991,11 @@ pub mod testing {
}
#[cfg(feature = "transparent-inputs")]
fn get_reserved_ephemeral_addresses(
fn get_known_ephemeral_addresses(
&self,
_account: Self::AccountId,
_for_detection: bool,
) -> Result<HashMap<TransparentAddress, Option<TransparentAddressMetadata>>, Self::Error>
{
) -> Result<HashMap<TransparentAddress, TransparentAddressMetadata>, Self::Error> {
Ok(HashMap::new())
}
}

View File

@ -549,12 +549,12 @@ impl<C: Borrow<rusqlite::Connection>, P: consensus::Parameters> WalletRead for W
}
#[cfg(feature = "transparent-inputs")]
fn get_reserved_ephemeral_addresses(
fn get_known_ephemeral_addresses(
&self,
account: Self::AccountId,
for_detection: bool,
) -> Result<HashMap<TransparentAddress, Option<TransparentAddressMetadata>>, Self::Error> {
wallet::transparent::ephemeral::get_reserved_ephemeral_addresses(
) -> Result<HashMap<TransparentAddress, TransparentAddressMetadata>, Self::Error> {
wallet::transparent::ephemeral::get_known_ephemeral_addresses(
self.conn.borrow(),
&self.params,
account,

View File

@ -119,12 +119,12 @@ pub(crate) fn get_ephemeral_ivk<P: consensus::Parameters>(
/// If `for_detection` is false, the result only includes reserved addresses.
/// If `for_detection` is true, it includes addresses for an additional
/// `GAP_LIMIT` indices, up to the limit.
pub(crate) fn get_reserved_ephemeral_addresses<P: consensus::Parameters>(
pub(crate) fn get_known_ephemeral_addresses<P: consensus::Parameters>(
conn: &rusqlite::Connection,
params: &P,
account_id: AccountId,
for_detection: bool,
) -> Result<HashMap<TransparentAddress, Option<TransparentAddressMetadata>>, SqliteClientError> {
) -> Result<HashMap<TransparentAddress, TransparentAddressMetadata>, SqliteClientError> {
let mut stmt = conn.prepare(
"SELECT address, address_index FROM ephemeral_addresses WHERE account_id = :account ORDER BY address_index",
)?;
@ -141,7 +141,7 @@ pub(crate) fn get_reserved_ephemeral_addresses<P: consensus::Parameters>(
.checked_add(1);
let address_index = NonHardenedChildIndex::from_index(raw_index).unwrap();
let address = TransparentAddress::decode(params, &addr_str)?;
result.insert(address, Some(metadata(address_index)));
result.insert(address, metadata(address_index));
}
if for_detection {
@ -151,7 +151,7 @@ pub(crate) fn get_reserved_ephemeral_addresses<P: consensus::Parameters>(
for raw_index in range_after(first, GAP_LIMIT) {
let address_index = NonHardenedChildIndex::from_index(raw_index).unwrap();
let address = ephemeral_ivk.derive_ephemeral_address(address_index)?;
result.insert(address, Some(metadata(address_index)));
result.insert(address, metadata(address_index));
}
}
}