Fixed block header seal fields decoding

This commit is contained in:
arkpar 2016-01-07 21:28:17 +01:00
parent 9b28d4cff6
commit 68cd250ec0
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ impl Decodable for Header {
};
for i in 13..r.item_count() {
blockheader.seal.push(try!(r.val_at(i)))
blockheader.seal.push(try!(r.at(i)).raw().to_vec())
}
Ok(blockheader)