From 87a08cba43f8dc427efccbd45d28acc652db2cb6 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 17 Jan 2023 11:02:08 +0000 Subject: [PATCH] build: move rpc/request from util lib to common This is JSON RPC request code that doesn't need to be in util, and should not be required by the kernel. --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 62c94f59fb..35b0ad24c3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -655,8 +655,9 @@ libbitcoin_common_a_SOURCES = \ policy/policy.cpp \ protocol.cpp \ psbt.cpp \ - rpc/rawtransaction_util.cpp \ rpc/external_signer.cpp \ + rpc/rawtransaction_util.cpp \ + rpc/request.cpp \ rpc/util.cpp \ scheduler.cpp \ script/descriptor.cpp \ @@ -684,7 +685,6 @@ libbitcoin_util_a_SOURCES = \ logging.cpp \ random.cpp \ randomenv.cpp \ - rpc/request.cpp \ support/cleanse.cpp \ sync.cpp \ util/asmap.cpp \