a few more quick changes and another range loop ignore

This commit is contained in:
Grant Wuerker
2018-10-20 17:38:32 -05:00
parent 869049d099
commit d3ec313b43
3 changed files with 6 additions and 11 deletions

View File

@@ -1,15 +1,9 @@
#![cfg_attr(not(feature = "clippy"), allow(needless_range_loop))]
use super::{
LENGTH_BYTES,
MAX_LIST_SIZE,
LENGTH_BYTES
};
#[derive(Debug)]
pub enum EncodeError {
ListTooLong,
}
pub trait Encodable {
fn ssz_append(&self, s: &mut SszStream);
}