Skip to content

Commit 7f54e9c

Browse files
committed
another tests.rs
1 parent 10ba9ca commit 7f54e9c

File tree

1 file changed

+3
-0
lines changed
  • beacon_node/network/src/network_beacon_processor

1 file changed

+3
-0
lines changed

beacon_node/network/src/network_beacon_processor/tests.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ struct TestRig {
5959
attester_slashing: AttesterSlashing<E>,
6060
proposer_slashing: ProposerSlashing,
6161
voluntary_exit: SignedVoluntaryExit,
62+
bls_to_execution_change: SignedBlsToExecutionChange,
6263
beacon_processor_tx: BeaconProcessorSend<E>,
6364
work_journal_rx: mpsc::Receiver<&'static str>,
6465
_network_rx: mpsc::UnboundedReceiver<NetworkMessage<E>>,
@@ -176,6 +177,7 @@ impl TestRig {
176177
let attester_slashing = harness.make_attester_slashing(vec![0, 1]);
177178
let proposer_slashing = harness.make_proposer_slashing(2);
178179
let voluntary_exit = harness.make_voluntary_exit(3, harness.chain.epoch().unwrap());
180+
let bls_to_execution_change = harness.make_bls_to_execution_change(4, Address::zero());
179181

180182
let chain = harness.chain.clone();
181183

@@ -258,6 +260,7 @@ impl TestRig {
258260
attester_slashing,
259261
proposer_slashing,
260262
voluntary_exit,
263+
bls_to_execution_change,
261264
beacon_processor_tx,
262265
work_journal_rx,
263266
_network_rx,

0 commit comments

Comments
 (0)