Bump ethabi & ethereum-types. (#8258)
* Bump ethabi & ethereum-types. * Fix test. * Fix hex encodings.
This commit is contained in:
committed by
André Silva
parent
c1cced3662
commit
9108a3bb50
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
serde_derive = "1"
|
||||
ethereum-types = "0.2"
|
||||
ethereum-types = "0.3"
|
||||
ethjson = { path = "../../../json" }
|
||||
vm = { path = "../../vm" }
|
||||
wasm = { path = "../" }
|
||||
|
||||
@@ -79,17 +79,17 @@ impl fmt::Display for Fail {
|
||||
write!(
|
||||
f,
|
||||
"Storage key {} value mismatch, expected {}, got: {}",
|
||||
key.as_ref().to_vec().to_hex(),
|
||||
expected.as_ref().to_vec().to_hex(),
|
||||
actual.as_ref().to_vec().to_hex(),
|
||||
key.to_vec().to_hex(),
|
||||
expected.to_vec().to_hex(),
|
||||
actual.to_vec().to_hex(),
|
||||
),
|
||||
|
||||
StorageMismatch { ref key, ref expected, actual: None} =>
|
||||
write!(
|
||||
f,
|
||||
"No expected storage value for key {} found, expected {}",
|
||||
key.as_ref().to_vec().to_hex(),
|
||||
expected.as_ref().to_vec().to_hex(),
|
||||
key.to_vec().to_hex(),
|
||||
expected.to_vec().to_hex(),
|
||||
),
|
||||
|
||||
Nonconformity(SpecNonconformity::Address) =>
|
||||
|
||||
Reference in New Issue
Block a user