File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
beacon_node/operation_pool/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ impl<E: EthSpec> BlsToExecutionChanges<E> {
113
113
. validators ( )
114
114
. get ( validator_index as usize )
115
115
. map_or ( true , |validator| {
116
- let prune = validator. has_eth1_withdrawal_credential ( spec)
116
+ let prune = validator. has_execution_withdrawal_credential ( spec)
117
117
&& head_block
118
118
. message ( )
119
119
. body ( )
Original file line number Diff line number Diff line change @@ -585,7 +585,7 @@ impl<E: EthSpec> OperationPool<E> {
585
585
&& state
586
586
. get_validator ( address_change. as_inner ( ) . message . validator_index as usize )
587
587
. map_or ( false , |validator| {
588
- !validator. has_eth1_withdrawal_credential ( spec)
588
+ !validator. has_execution_withdrawal_credential ( spec)
589
589
} )
590
590
} ,
591
591
|address_change| address_change. as_inner ( ) . clone ( ) ,
You can’t perform that action at this time.
0 commit comments