Fix unneeded initial value and mut

This commit is contained in:
Deirdre Connolly 2020-04-07 18:01:56 -04:00 committed by Deirdre Connolly
parent 23cd346f28
commit 01599a0735
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl SaplingShieldedAddress {
let mut bytes = io::Cursor::new(Vec::new());
let _ = self.zcash_serialize(&mut bytes);
let mut hrp = "";
let hrp;
match network {
Network::Mainnet => hrp = human_readable_parts::MAINNET,