Merge branch 'master' into client-test-refact

This commit is contained in:
Nikolay Volf 2016-01-26 17:34:42 +04:00
commit 6f141c1fdb
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ impl<'a> Decoder for BasicDecoder<'a> {
Some(l @ 0...0x7f) => Ok(try!(f(&[l]))),
// 0-55 bytes
Some(l @ 0x80...0xb7) => {
let last_index_of = 1 + l as usize - 0x80;
let last_index_of = 1 + l as usize - 0x80;
if bytes.len() < last_index_of {
return Err(DecoderError::RlpInconsistentLengthAndData);
}