fix build (smh clang-tidy)

This commit is contained in:
Mayukha Vadari
2026-04-21 15:46:21 -04:00
parent dc2430ea86
commit fabf328485

View File

@@ -42,10 +42,10 @@ public:
}
// For sorting to look for duplicate accounts
friend bool
operator<(SignerEntry const& lhs, SignerEntry const& rhs)
friend auto
operator<=>(SignerEntry const& lhs, SignerEntry const& rhs)
{
return lhs.account < rhs.account;
return lhs.account <=> rhs.account;
}
friend bool