fix FromStr for Address

feat/vaults
Tomáš Mládek 2021-02-19 22:35:05 +01:00
parent ae812b33d1
commit cc4d7209be
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ impl FromStr for Address {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Address::decode(s.as_ref())
Address::decode(decode(s)?.as_ref())
}
}