Skip to content

Commit

Permalink
Update EF tests to 1.0.0 (#1875)
Browse files Browse the repository at this point in the history
## Proposed Changes

Bump the EF tests from `1.0.0-rc.0` to `1.0.0`

## Additional Info

Builds on #1862
  • Loading branch information
michaelsproul committed Nov 12, 2020
1 parent 7404f1c commit 1107691
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions consensus/types/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl ChainSpec {
churn_limit_quotient: 65_536,
shuffle_round_count: 90,
min_genesis_active_validator_count: 16_384,
min_genesis_time: 1_578_009_600, // Jan 3, 2020
min_genesis_time: 1606824000, // Dec 1, 2020
hysteresis_quotient: 4,
hysteresis_downward_multiplier: 1,
hysteresis_upward_multiplier: 5,
Expand Down Expand Up @@ -324,7 +324,7 @@ impl ChainSpec {
seconds_per_eth1_block: 14,
deposit_chain_id: 1,
deposit_network_id: 1,
deposit_contract_address: "1234567890123456789012345678901234567890"
deposit_contract_address: "00000000219ab540356cbb839cbe05303d7705fa"
.parse()
.expect("chain spec deposit contract address"),

Expand Down Expand Up @@ -354,6 +354,7 @@ impl ChainSpec {
target_committee_size: 4,
shuffle_round_count: 10,
min_genesis_active_validator_count: 64,
min_genesis_time: 1578009600,
eth1_follow_distance: 16,
genesis_fork_version: [0x00, 0x00, 0x00, 0x01],
shard_committee_period: 64,
Expand All @@ -366,6 +367,9 @@ impl ChainSpec {
network_id: 2, // lighthouse testnet network id
deposit_chain_id: 5,
deposit_network_id: 5,
deposit_contract_address: "1234567890123456789012345678901234567890"
.parse()
.expect("minimal chain spec deposit address"),
boot_nodes,
..ChainSpec::mainnet()
}
Expand Down
2 changes: 1 addition & 1 deletion testing/ef_tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TESTS_TAG := v1.0.0-rc.0
TESTS_TAG := v1.0.0
TESTS = general minimal mainnet
TARBALLS = $(patsubst %,%-$(TESTS_TAG).tar.gz,$(TESTS))

Expand Down

0 comments on commit 1107691

Please sign in to comment.