Skip to content

Commit

Permalink
Correct error message
Browse files Browse the repository at this point in the history
  • Loading branch information
boreq committed Nov 29, 2023
1 parent f9136eb commit 30a409d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/app/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (d *RelayDownloader) downloadSince() *time.Time {
func (d *RelayDownloader) refreshPublicKeys(ctx context.Context) error {
publicKeys, err := d.publicKeySource.GetPublicKeys(ctx)
if err != nil {
return errors.Wrap(err, "error getting relay addresses")
return errors.Wrap(err, "error getting public keys")
}

d.logger.
Expand Down

0 comments on commit 30a409d

Please sign in to comment.