Fix interop eth1 blockhash

This commit is contained in:
Paul Hauner
2019-09-02 18:19:30 +10:00
parent 5a8c31e6bf
commit a0e019b4d7

View File

@@ -165,7 +165,7 @@ fn interop_genesis_state<T: EthSpec>(
spec: &ChainSpec,
) -> Result<BeaconState<T>, String> {
let keypairs = generate_deterministic_keypairs(validator_count);
let eth1_block_hash = Hash256::from_slice(&[42; 32]);
let eth1_block_hash = Hash256::from_slice(&[0x42; 32]);
let eth1_timestamp = 2_u64.pow(40);
let amount = spec.max_effective_balance;
@@ -277,7 +277,7 @@ mod test {
assert_eq!(
state.eth1_data.block_hash,
Hash256::from_slice(&[42; 32]),
Hash256::from_slice(&[0x42; 32]),
"eth1 block hash should be co-ordinated junk"
);