Skip to content

Commit e501246

Browse files
committed
build: move rpc/external_signer to node library
1 parent 73e2ec1 commit e501246

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

contrib/devtools/check-deps.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ SUPPRESS["init.cpp.o bdb.cpp.o _ZN6wallet27BerkeleyDatabaseSanityCheckEv"]=1
5050
# https://github.com/bitcoin/bitcoin/issues/10102
5151
SUPPRESS["common.cpp.o interface_ui.cpp.o _Z11InitWarningRK13bilingual_str"]=1
5252
SUPPRESS["common.cpp.o interface_ui.cpp.o _Z9InitErrorRK13bilingual_str"]=1
53-
# rpc/external_signer.cpp adds defines node RPC methods but is built as part of the
54-
# common library. It should be moved to the node library instead.
55-
SUPPRESS["external_signer.cpp.o server.cpp.o _ZN9CRPCTable13appendCommandERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPK11CRPCCommand"]=1
5653

5754
usage() {
5855
echo "Usage: $(basename "${BASH_SOURCE[0]}") [BUILD_DIR]"

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ add_library(bitcoin_common STATIC EXCLUDE_FROM_ALL
145145
pow.cpp
146146
protocol.cpp
147147
psbt.cpp
148-
rpc/external_signer.cpp
149148
rpc/rawtransaction_util.cpp
150149
rpc/request.cpp
151150
rpc/util.cpp
@@ -264,6 +263,7 @@ add_library(bitcoin_node STATIC EXCLUDE_FROM_ALL
264263
policy/truc_policy.cpp
265264
rest.cpp
266265
rpc/blockchain.cpp
266+
rpc/external_signer.cpp
267267
rpc/fees.cpp
268268
rpc/mempool.cpp
269269
rpc/mining.cpp

0 commit comments

Comments
 (0)