Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srene committed Nov 10, 2024
1 parent a9deafb commit 2ded44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion block/fork.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (m *Manager) prepareDRSUpgradeMessages(faultyDRS []uint32) ([]proto.Message
return nil, nil
}

actualDRS, err := strconv.Atoi(version.DrsVersion)
actualDRS, err := strconv.ParseUint(version.DrsVersion, 10, 32)
if err != nil {
return nil, fmt.Errorf("converting DRS version to int: %v", err)
}
Expand Down

0 comments on commit 2ded44f

Please sign in to comment.