Fix missing method in in-memory wallet prototype.

This commit is contained in:
Kris Nuttycombe 2021-05-14 15:09:36 -06:00
parent 5540f36344
commit fd47ee3652
1 changed files with 4 additions and 0 deletions

View File

@ -406,6 +406,10 @@ pub mod testing {
Ok(Vec::new())
}
fn get_all_nullifiers(&self) -> Result<Vec<(AccountId, Nullifier)>, Self::Error> {
Ok(Vec::new())
}
fn get_unspent_sapling_notes(
&self,
_account: AccountId,