Skip to content

Commit

Permalink
Fix var name.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfornax committed Apr 14, 2024
1 parent 469a40f commit 03dc132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocketpool-cli/minipool/close.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func closeMinipools(c *cli.Context) error {
thirtyTwo := eth.EthToWei(32)
for _, minipool := range selectedMinipools {
// Dissolved minipools can always be closed
if mp.MinipoolStatus == types.Dissolved {
if minipool.MinipoolStatus == types.Dissolved {
continue
}
// Check the distributableBalance, minus any refunds
Expand Down

0 comments on commit 03dc132

Please sign in to comment.