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.
Calculate finalized header time on genesis config import (paritytech#768
) * Calculate finalized header time on genesis config import * Finishes up import time check fix. * fmt * Revert switching back to polkadot launch. * Update parachain/pallets/ethereum-beacon-client/src/benchmarking/data.rs Co-authored-by: David Dunn <26876072+doubledup@users.noreply.github.com> Co-authored-by: claravanstaden <Cats 4 life!> Co-authored-by: David Dunn <26876072+doubledup@users.noreply.github.com>
- Loading branch information
1 parent
2ed1155
commit 5353de6
Showing
12 changed files
with
141 additions
and
32 deletions.
There are no files selected for viewing
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
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
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
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
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
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,4 +1,5 @@ | ||
pub const SLOTS_PER_EPOCH: u64 = 32; | ||
pub const SECONDS_PER_SLOT: u64 = 12; | ||
pub const EPOCHS_PER_SYNC_COMMITTEE_PERIOD: u64 = 256; | ||
pub const SYNC_COMMITTEE_SIZE: usize = 512; | ||
pub const IS_MINIMAL: bool = false; |
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,4 +1,5 @@ | ||
pub const SLOTS_PER_EPOCH: u64 = 4; | ||
pub const SECONDS_PER_SLOT: u64 = 6; | ||
pub const EPOCHS_PER_SYNC_COMMITTEE_PERIOD: u64 = 8; | ||
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
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
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
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
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