mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-06 18:26:51 +00:00
chore: Enable clang-tidy misc checks (#6655)
This commit is contained in:
@@ -130,11 +130,11 @@ ecdsaCanonicality(Slice const& sig)
|
||||
if (!r || !s || !p.empty())
|
||||
return std::nullopt;
|
||||
|
||||
uint264 R(sliceToHex(*r));
|
||||
uint264 const R(sliceToHex(*r));
|
||||
if (R >= G)
|
||||
return std::nullopt;
|
||||
|
||||
uint264 S(sliceToHex(*s));
|
||||
uint264 const S(sliceToHex(*s));
|
||||
if (S >= G)
|
||||
return std::nullopt;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user