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
@@ -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