base58 to string

This commit is contained in:
Deirdre Connolly 2020-03-05 20:40:17 -05:00 committed by Deirdre Connolly
parent 9887b7c8b7
commit f11821fcc8
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ impl fmt::Debug for TransparentAddress {
let _ = self.zcash_serialize(&mut bytes);
f.debug_tuple("TransparentAddress")
.field(&bs58::encode(bytes.get_ref()).into_vec())
.field(&bs58::encode(bytes.get_ref()).into_string())
.finish()
}
}