mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
Merge branch 'unstable' of https://github.com/sigp/lighthouse into eip4844
This commit is contained in:
@@ -13,7 +13,7 @@ const GETH_REPO_URL: &str = "https://github.com/ethereum/go-ethereum";
|
||||
pub fn build_result(repo_dir: &Path) -> Output {
|
||||
Command::new("make")
|
||||
.arg("geth")
|
||||
.current_dir(&repo_dir)
|
||||
.current_dir(repo_dir)
|
||||
.output()
|
||||
.expect("failed to make geth")
|
||||
}
|
||||
|
||||
@@ -203,8 +203,8 @@ impl<E: GenericExecutionEngine> TestRig<E> {
|
||||
.await;
|
||||
|
||||
// We hardcode the accounts here since some EEs start with a default unlocked account
|
||||
let account1 = ethers_core::types::Address::from_slice(&hex::decode(&ACCOUNT1).unwrap());
|
||||
let account2 = ethers_core::types::Address::from_slice(&hex::decode(&ACCOUNT2).unwrap());
|
||||
let account1 = ethers_core::types::Address::from_slice(&hex::decode(ACCOUNT1).unwrap());
|
||||
let account2 = ethers_core::types::Address::from_slice(&hex::decode(ACCOUNT2).unwrap());
|
||||
|
||||
/*
|
||||
* Check the transition config endpoint.
|
||||
|
||||
@@ -30,7 +30,7 @@ pub fn transactions<E: EthSpec>(account1: Address, account2: Address) -> Vec<Typ
|
||||
Transaction::DepositDepositContract {
|
||||
sender: account1,
|
||||
deposit_contract_address: ethers_core::types::Address::from_slice(
|
||||
&hex::decode(&DEPOSIT_CONTRACT_ADDRESS).unwrap(),
|
||||
&hex::decode(DEPOSIT_CONTRACT_ADDRESS).unwrap(),
|
||||
),
|
||||
}
|
||||
.transaction::<E>(),
|
||||
|
||||
Reference in New Issue
Block a user