mirror of
https://github.com/XRPLF/rippled.git
synced 2026-03-19 19:22:26 +00:00
This change deletes the `SecretKey` equality/inequality operators from the public library header and moves the comparison logic into test-only code. Specifically, the `operator==` and `operator!=` free functions on `SecretKey` have been removed from `include/xrpl/protocol/SecretKey.h` and have been replaced with explicitly deleted member functions to prevent accidental use in production code. A named `test::equal()` helper has also been added in `src/test/unit_test/utils.h` for test assertions that need to compare secret keys.