Clippy happy

This commit is contained in:
Daniel Sanchez Quiros 2024-11-08 11:09:22 +07:00
parent 38224a75d4
commit 7019fa2f2f
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ pub struct MixnodeState {
pub enum MixnodeRecord {
Runtime(Runtime),
Settings(Box<SimulationSettings>),
#[allow(clippy::vec_box)] // we downcast stuff and we need the extra boxing
Data(Vec<Box<MixnodeState>>),
}