Merge branch 'master' into 215-migrate-ssz-little-endian

This commit is contained in:
Kirk Baird
2019-03-18 10:47:40 +11:00
146 changed files with 7502 additions and 3642 deletions

View File

@@ -55,13 +55,13 @@ impl Encodable for bool {
impl Encodable for H256 {
fn ssz_append(&self, s: &mut SszStream) {
s.append_encoded_raw(&self.to_vec());
s.append_encoded_raw(self.as_bytes());
}
}
impl Encodable for Address {
fn ssz_append(&self, s: &mut SszStream) {
s.append_encoded_raw(&self.to_vec());
s.append_encoded_raw(self.as_bytes());
}
}