Skip to content

Commit f7c63af

Browse files
committed
fix: todo comments
Signed-off-by: Pablo <[email protected]>
1 parent ea7ac71 commit f7c63af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

signable.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ func (s *Signable) CheckQuorum(ctx context.Context, chain types.ChainSelector) (
161161
return false, errors.New("inspector not found for chain " + strconv.FormatUint(uint64(chain), 10))
162162
}
163163

164-
//nolint:contextcheck
165-
hash, err := s.proposal.SigningHash()
164+
// TODO: we should pass the context once we remove background context in the remote chain selectors api
165+
hash, err := s.proposal.SigningHash() //nolint:contextcheck
166166
if err != nil {
167167
return false, err
168168
}

0 commit comments

Comments
 (0)