File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -948,7 +948,7 @@ impl State {
948948 pub fn handle_withdrawals ( & mut self , withdrawals_msg : & WithdrawalsMessage ) -> Result < ( ) > {
949949 for withdrawal in withdrawals_msg. withdrawals . iter ( ) {
950950 let mut stake_addresses = self . stake_addresses . lock ( ) . unwrap ( ) ;
951- stake_addresses. process_withdrawal ( & withdrawal) ;
951+ stake_addresses. process_withdrawal ( withdrawal) ;
952952 }
953953
954954 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ impl State {
618618 } ;
619619 let mut stake_addresses = stake_addresses. lock ( ) . unwrap ( ) ;
620620 for withdrawal in withdrawals_msg. withdrawals . iter ( ) {
621- stake_addresses. process_withdrawal ( & withdrawal) ;
621+ stake_addresses. process_withdrawal ( withdrawal) ;
622622 }
623623
624624 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments