Skip to content

Commit

Permalink
Fix withdrawal addresses error message
Browse files Browse the repository at this point in the history
  • Loading branch information
KaloyanTanev committed Jan 9, 2025
1 parent e9c97c2 commit 41891f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster/definition.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func NewDefinition(name string, numVals int, threshold int, feeRecipientAddresse
}

if len(withdrawalAddresses) != numVals {
return Definition{}, errors.New("insufficient fee-recipient addresses")
return Definition{}, errors.New("insufficient withdrawal addresses")
}

def := Definition{
Expand Down

0 comments on commit 41891f8

Please sign in to comment.