use append_empty_data rather than fibbing it

This commit is contained in:
Robert Habermeier 2016-06-14 11:48:34 +02:00
parent 835b158069
commit b88eef5374
1 changed files with 1 additions and 2 deletions

View File

@ -274,8 +274,7 @@ impl AccountReader {
if self.code_hash == SHA3_NULL_RLP {
account_stream.append(&true).append(&hash_db.get(&self.code_hash).unwrap());
} else {
let empty: &[u8] = &[];
account_stream.append(&false).append(&empty);
account_stream.append(&false).append_empty_data();
}
account_stream.append(&pairs_rlp);