File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
beacon_node/network/src/network_beacon_processor Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ struct TestRig {
59
59
attester_slashing : AttesterSlashing < E > ,
60
60
proposer_slashing : ProposerSlashing ,
61
61
voluntary_exit : SignedVoluntaryExit ,
62
+ bls_to_execution_change : SignedBlsToExecutionChange ,
62
63
beacon_processor_tx : BeaconProcessorSend < E > ,
63
64
work_journal_rx : mpsc:: Receiver < & ' static str > ,
64
65
_network_rx : mpsc:: UnboundedReceiver < NetworkMessage < E > > ,
@@ -176,6 +177,7 @@ impl TestRig {
176
177
let attester_slashing = harness. make_attester_slashing ( vec ! [ 0 , 1 ] ) ;
177
178
let proposer_slashing = harness. make_proposer_slashing ( 2 ) ;
178
179
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 ( ) ) ;
179
181
180
182
let chain = harness. chain . clone ( ) ;
181
183
@@ -258,6 +260,7 @@ impl TestRig {
258
260
attester_slashing,
259
261
proposer_slashing,
260
262
voluntary_exit,
263
+ bls_to_execution_change,
261
264
beacon_processor_tx,
262
265
work_journal_rx,
263
266
_network_rx,
You can’t perform that action at this time.
0 commit comments