From eb63dbcd2ae3c59634602c48d8699209e400a2a1 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Tue, 26 Jun 2018 12:20:09 -0700 Subject: [PATCH] an Entry needs to be multiple of 4 bytes long --- src/entry.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entry.rs b/src/entry.rs index c3691b9b71..431d06a9a3 100644 --- a/src/entry.rs +++ b/src/entry.rs @@ -42,6 +42,8 @@ pub struct Entry { /// 2. this Entry can be left out of the bank's entry_id cache for /// purposes of duplicate rejection pub has_more: bool, + + erasure_pad: [u8; 3], } impl Entry {