Fuzztests update with carnot-engine
This commit is contained in:
parent
8cc0cb5efb
commit
c3e793c7b4
|
@ -1,6 +1,6 @@
|
||||||
use std::collections::{BTreeMap, HashSet};
|
use std::collections::{BTreeMap, HashSet};
|
||||||
|
|
||||||
use consensus_engine::{
|
use carnot_engine::{
|
||||||
AggregateQc, Block, BlockId, LeaderProof, NodeId, Qc, StandardQc, TimeoutQc, View,
|
AggregateQc, Block, BlockId, LeaderProof, NodeId, Qc, StandardQc, TimeoutQc, View,
|
||||||
};
|
};
|
||||||
use proptest::prelude::*;
|
use proptest::prelude::*;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use std::{collections::HashSet, panic};
|
use std::{collections::HashSet, panic};
|
||||||
|
|
||||||
use consensus_engine::overlay::FreezeMembership;
|
use carnot_engine::overlay::FreezeMembership;
|
||||||
use consensus_engine::{
|
use carnot_engine::{
|
||||||
overlay::{FlatOverlay, FlatOverlaySettings, RoundRobin},
|
overlay::{FlatOverlay, FlatOverlaySettings, RoundRobin},
|
||||||
*,
|
*,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
use consensus_engine::{Block, NewView, TimeoutQc};
|
use carnot_engine::{Block, NewView, TimeoutQc};
|
||||||
|
|
||||||
// State transtitions that will be picked randomly
|
// State transtitions that will be picked randomly
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
|
Loading…
Reference in New Issue