Skip to content

Commit

Permalink
zcash_client_sqlite: Temporarily hardcode an empty response for `get_…
Browse files Browse the repository at this point in the history
…orchard_nullifiers`
  • Loading branch information
nuttycom committed Feb 27, 2024
1 parent 00ea5ff commit d68d154
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zcash_client_sqlite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ impl<C: Borrow<rusqlite::Connection>, P: consensus::Parameters> WalletRead for W
&self,
_query: NullifierQuery,
) -> Result<Vec<(AccountId, orchard::note::Nullifier)>, Self::Error> {
todo!()
// FIXME! Orchard.
Ok(vec![])
}

fn get_account_ids(&self) -> Result<Vec<AccountId>, Self::Error> {
Expand Down

0 comments on commit d68d154

Please sign in to comment.