Do not log zaddrs or txids to reduce metadata leakage on disk

This commit is contained in:
Duke Leto
2022-02-22 09:46:43 -05:00
parent ef477f152e
commit 0961725d75
7 changed files with 20 additions and 5 deletions

View File

@@ -1,3 +1,5 @@
// Copyright The Hush Developers 2019-2022
// Released under the GPLv3
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
@@ -8,4 +10,4 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("cargo:rerun-if-changed=proto/service.proto");
Ok(())
}