Skip to content

Commit

Permalink
Implement todo! line
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Mar 14, 2024
1 parent b4171ca commit 9ddbf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zcash_client_sqlite/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
}
}
Expand Down

0 comments on commit 9ddbf1e

Please sign in to comment.