diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2021-04-21 16:39:40 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-12-02 13:15:32 +0700 |
commit | b884ababc29ce963826d8a4327ed6a5e629ff175 (patch) | |
tree | 55b49ff02eec85ec0f133a236c997ede8224c43e /src/Makefile.am | |
parent | df562d698a386166ef93d03326c0480ea9bc11fe (diff) |
rpc: move Ensure* helpers to server_util.h
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6846eb9693..1acfd66cf0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -200,12 +200,12 @@ BITCOIN_CORE_H = \ rpc/blockchain.h \ rpc/client.h \ rpc/mining.h \ - rpc/net.h \ rpc/protocol.h \ rpc/rawtransaction_util.h \ rpc/register.h \ rpc/request.h \ rpc/server.h \ + rpc/server_util.h \ rpc/util.h \ scheduler.h \ script/descriptor.h \ @@ -360,6 +360,7 @@ libbitcoin_server_a_SOURCES = \ rpc/net.cpp \ rpc/rawtransaction.cpp \ rpc/server.cpp \ + rpc/server_util.cpp \ script/sigcache.cpp \ shutdown.cpp \ signet.cpp \ |