From 6acec6b9ff02b91de132bb1575d75908a8a2d27b Mon Sep 17 00:00:00 2001 From: Ryan Ofsky Date: Mon, 20 Nov 2023 15:49:55 -0500 Subject: multiprocess: Add type conversion code for UniValue types Extend IPC unit test to cover this and verify the serialization happens correctly. --- src/test/ipc_test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/test/ipc_test.h') diff --git a/src/test/ipc_test.h b/src/test/ipc_test.h index f100ae8c5d..bcfcc2125c 100644 --- a/src/test/ipc_test.h +++ b/src/test/ipc_test.h @@ -6,12 +6,14 @@ #define BITCOIN_TEST_IPC_TEST_H #include +#include class FooImplementation { public: int add(int a, int b) { return a + b; } COutPoint passOutPoint(COutPoint o) { return o; } + UniValue passUniValue(UniValue v) { return v; } }; void IpcTest(); -- cgit v1.2.3