Skip to content

Commit

Permalink
Merge pull request #1997 from OffchainLabs/init-staker-wallet
Browse files Browse the repository at this point in the history
Always initialize staker wallet
  • Loading branch information
PlasmaPower authored Dec 4, 2023
2 parents d6d526d + 3eb4212 commit ddf1229
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions arbnode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,10 +615,8 @@ func createNodeImpl(
if err != nil {
return nil, err
}
if stakerObj.Strategy() == staker.WatchtowerStrategy {
if err := wallet.Initialize(ctx); err != nil {
return nil, err
}
if err := wallet.Initialize(ctx); err != nil {
return nil, err
}
var txValidatorSenderPtr *common.Address
if txOptsValidator != nil {
Expand Down

0 comments on commit ddf1229

Please sign in to comment.