Fixed other types

This commit is contained in:
maciejhirsz
2017-01-30 19:13:35 +01:00
parent 5fe54901e7
commit 6795068ea4
4 changed files with 6 additions and 6 deletions

View File

@@ -233,7 +233,7 @@ impl Decodable for BlockReceipts {
impl Encodable for BlockReceipts {
fn rlp_append(&self, s: &mut RlpStream) {
s.append(&self.receipts);
Encodable::rlp_append(&self.receipts, s);
}
}