Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
muXxer committed Dec 18, 2023
1 parent d32a55d commit 53ed22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/validator/nodebridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func readIsValidatorAccount(ctx context.Context, accountID iotago.AccountID, slo
}

// requestTips requests tips from the node.
func requestTips(ctx context.Context, count uint32) (strong iotago.BlockIDs, weak iotago.BlockIDs, shallowLike iotago.BlockIDs, err error) {
func requestTips(ctx context.Context, count uint32) (iotago.BlockIDs, iotago.BlockIDs, iotago.BlockIDs, error) {
ctx, cancel := context.WithTimeout(ctx, TimeoutINXRequestTips)
defer cancel()

Expand Down

0 comments on commit 53ed22e

Please sign in to comment.