From cb02cbbf2b18afe31dc7359c0af0abac9e8aae0b Mon Sep 17 00:00:00 2001 From: Shawn Xie <35279399+shawnxie999@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:32:15 -0500 Subject: [PATCH] prefix Uint384 and Uint512 with Hash in server_definitions (#5231) --- src/test/rpc/ServerInfo_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/rpc/ServerInfo_test.cpp b/src/test/rpc/ServerInfo_test.cpp index e6f889c5b..5821ddb59 100644 --- a/src/test/rpc/ServerInfo_test.cpp +++ b/src/test/rpc/ServerInfo_test.cpp @@ -227,6 +227,8 @@ admin = 127.0.0.1 BEAST_EXPECT(types["Hash160"].asUInt() == 17); BEAST_EXPECT(types["Hash192"].asUInt() == 21); BEAST_EXPECT(types["Hash256"].asUInt() == 5); + BEAST_EXPECT(types["Hash384"].asUInt() == 22); + BEAST_EXPECT(types["Hash512"].asUInt() == 23); } }