From 17565d21d4836a5673cb5ec20c68aa0a376706ed Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Thu, 8 Jan 2026 08:29:59 -0500 Subject: [PATCH] refactor: Remove unused credentials signature hash prefix (#6186) This change removes the unused credentials signature hash prefix from `HashPrefix.h`. --- include/xrpl/protocol/HashPrefix.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/xrpl/protocol/HashPrefix.h b/include/xrpl/protocol/HashPrefix.h index 77529e9212..39e03bf94f 100644 --- a/include/xrpl/protocol/HashPrefix.h +++ b/include/xrpl/protocol/HashPrefix.h @@ -67,9 +67,6 @@ enum class HashPrefix : std::uint32_t { /** Payment Channel Claim */ paymentChannelClaim = detail::make_hash_prefix('C', 'L', 'M'), - /** Credentials signature */ - credential = detail::make_hash_prefix('C', 'R', 'D'), - /** Batch */ batch = detail::make_hash_prefix('B', 'C', 'H'), };