fix build by patching up import and usage

This commit is contained in:
Alex Stokes 2018-12-12 19:28:54 -08:00
parent 1ff47720f1
commit de54d40841
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086

View File

@ -3,7 +3,6 @@ extern crate bytes;
extern crate hashing;
extern crate types;
use active_validators::validator_is_active;
use bytes::{BufMut, BytesMut};
use hashing::canonical_hash;
use std::cmp::max;
@ -31,7 +30,7 @@ pub fn update_validator_set(
let total_balance = {
let mut bal: u64 = 0;
for v in validators.iter() {
if validator_is_active(&v) {
if v.status_is(ValidatorStatus::Active) {
bal = bal
.checked_add(v.balance)
.ok_or(UpdateValidatorSetError::ArithmeticOverflow)?;