mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-22 14:24:44 +00:00
Fix tree-states tests (#5277)
* Fix beta compiler lints * Fix fork choice tests * Fix op_pool tests --------- Co-authored-by: dapplion <35266934+dapplion@users.noreply.github.com>
This commit is contained in:
@@ -46,9 +46,9 @@ const MAX_FORK_CHOICE_DISTANCE: u64 = 256;
|
||||
#[derive(Debug)]
|
||||
enum Error {
|
||||
BeaconChain(BeaconChainError),
|
||||
BeaconState(BeaconStateError),
|
||||
Store(store::Error),
|
||||
// We don't use the inner value directly, but it's used in the Debug impl.
|
||||
BeaconState(#[allow(dead_code)] BeaconStateError),
|
||||
Store(#[allow(dead_code)] store::Error),
|
||||
HeadMissingFromSnapshotCache(#[allow(dead_code)] Hash256),
|
||||
MaxDistanceExceeded {
|
||||
current_slot: Slot,
|
||||
|
||||
Reference in New Issue
Block a user