Skip to content

Commit

Permalink
Build fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cypt4 committed Jan 16, 2025
1 parent ef7f4f2 commit 9e71c7b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions components/brave_wallet/browser/zcash/zcash_keyring.cc
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,7 @@ std::optional<OrchardFullViewKey> ZCashKeyring::GetOrchardFullViewKey(

std::optional<OrchardSpendingKey> ZCashKeyring::GetOrchardSpendingKey(
const uint32_t& account_id) {
if (!orchard_key_) {
return std::nullopt;
}

auto esk = orchard_key_->DeriveHardenedChild(account_id);
auto esk = DeriveOrchardAccount(account_id);
if (!esk) {
return std::nullopt;
}
Expand Down

0 comments on commit 9e71c7b

Please sign in to comment.