This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move tests to one file. * Progress on test refactor * Fixed tests * Finish test cleanup. * Tests refactor
- Loading branch information
1 parent
664e41c
commit c4a0974
Showing
17 changed files
with
2,967 additions
and
6,912 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
parachain/pallets/ethereum-beacon-client/src/config/mainnet.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub const SLOTS_PER_EPOCH: u64 = 32; | ||
pub const EPOCHS_PER_SYNC_COMMITTEE_PERIOD: u64 = 256; | ||
pub const SYNC_COMMITTEE_SIZE: usize = 512; | ||
pub const SYNC_COMMITTEE_SIZE: usize = 512; | ||
pub const IS_MINIMAL: bool = false; |
3 changes: 2 additions & 1 deletion
3
parachain/pallets/ethereum-beacon-client/src/config/minimal.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub const SLOTS_PER_EPOCH: u64 = 8; | ||
pub const EPOCHS_PER_SYNC_COMMITTEE_PERIOD: u64 = 8; | ||
pub const SYNC_COMMITTEE_SIZE: usize = 32; | ||
pub const SYNC_COMMITTEE_SIZE: usize = 32; | ||
pub const IS_MINIMAL: bool = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.