migrated ethcore engine to new ethabi interface

This commit is contained in:
debris 2017-07-05 10:18:19 +02:00
parent e448b84845
commit 2e5f7f1632
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ impl ValidatorSafeContract {
// decode log manually until the native contract generator is
// good enough to do it for us.
let &(_, _, ref validators_token) = &matched_event.params[1];
let validators_token = &matched_event[1].value;
let validators = validators_token.clone().to_array()
.and_then(|a| a.into_iter()