Implement todo! line

This commit is contained in:
Andrew Arnott 2024-03-14 15:21:46 -06:00
parent b4171caaf4
commit 9ddbf1e3e9
No known key found for this signature in database
GPG Key ID: 48F18646D6868924
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ impl Account {
) -> Result<(UnifiedAddress, DiversifierIndex), AddressGenerationError> {
match &self.viewing_key {
ViewingKey::Full(ufvk) => ufvk.default_address(request),
ViewingKey::Incoming(_uivk) => todo!(),
ViewingKey::Incoming(uivk) => uivk.default_address(request),
}
}
}