mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-26 09:13:41 +00:00
Gloas spec v1.7.0-alpha.5 and beacon_chain tests (#8998)
Fix database pruning post-Gloas - Fix DB pruning logic (and state summaries DAG) - Get the `beacon_chain` tests running with `FORK_NAME=gloas` 🎉 Co-Authored-By: Michael Sproul <michael@sigmaprime.io> Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com> Co-Authored-By: Eitan Seri- Levi <eserilev@gmail.com> Co-Authored-By: dapplion <35266934+dapplion@users.noreply.github.com> Co-Authored-By: Eitan Seri-Levi <eserilev@ucsc.edu>
This commit is contained in:
@@ -16,8 +16,8 @@ use types::*;
|
||||
|
||||
type E = MainnetEthSpec;
|
||||
|
||||
// Should ideally be divisible by 3.
|
||||
const VALIDATOR_COUNT: usize = 24;
|
||||
// >= 32 validators required for Gloas genesis with MainnetEthSpec (32 slots/epoch).
|
||||
const VALIDATOR_COUNT: usize = 32;
|
||||
|
||||
/// A cached set of keys.
|
||||
static KEYPAIRS: LazyLock<Vec<Keypair>> =
|
||||
@@ -52,7 +52,8 @@ async fn rpc_columns_with_invalid_header_signature() {
|
||||
let spec = Arc::new(test_spec::<E>());
|
||||
|
||||
// Only run this test if columns are enabled.
|
||||
if !spec.is_fulu_scheduled() {
|
||||
// TODO(gloas): Gloas blocks don't have blob_kzg_commitments — blobs are in the envelope.
|
||||
if !spec.is_fulu_scheduled() || spec.is_gloas_scheduled() {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user