update pr to use From::from
This commit is contained in:
parent
dfc1be8a6e
commit
90645e30a6
@ -18,17 +18,7 @@ pub fn bytes_from_json(json: &Json) -> Bytes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn address_from_json(json: &Json) -> Address {
|
pub fn address_from_json(json: &Json) -> Address {
|
||||||
address_from_str(json.as_string().unwrap_or("0000000000000000000000000000000000000000"))
|
From::from(json.as_string().unwrap_or("0000000000000000000000000000000000000000"))
|
||||||
}
|
|
||||||
|
|
||||||
pub fn address_from_str<'a>(s: &'a str) -> Address {
|
|
||||||
if s.len() == 0 {
|
|
||||||
Address::new()
|
|
||||||
} else if s.len() % 2 == 1 {
|
|
||||||
address_from_hex(&("0".to_string() + &(clean(s).to_string()))[..])
|
|
||||||
} else {
|
|
||||||
address_from_hex(clean(s))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn h256_from_json(json: &Json) -> H256 {
|
pub fn h256_from_json(json: &Json) -> H256 {
|
||||||
|
Loading…
Reference in New Issue
Block a user