diff options
author | MacroFake <falke.marco@gmail.com> | 2022-05-03 09:05:07 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-05-03 09:05:15 +0200 |
commit | fa758f9bc5e3a9a4653d7779a6a17adb8e51e92c (patch) | |
tree | 9be1aa391ce1253e5daaed704e49a656d0c2ea61 /src/Makefile.am | |
parent | fa87eb8ce184a2f0d0ae2d19751b4f6b47af2349 (diff) |
scripted-diff: Rename rpc/misc.cpp to rpc/node.cpp
-BEGIN VERIFY SCRIPT-
git mv src/rpc/misc.cpp src/rpc/node.cpp
sed -i 's@rpc/misc.cpp@rpc/node.cpp@g' $(git grep -l misc.cpp)
sed -i 's,RegisterMiscRPCCommands,RegisterNodeRPCCommands,g' $(git grep -l RegisterMiscRPCCommands)
-END VERIFY SCRIPT-
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4d97579d7b..85ea60c0ae 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -382,7 +382,7 @@ libbitcoin_node_a_SOURCES = \ rpc/fees.cpp \ rpc/mempool.cpp \ rpc/mining.cpp \ - rpc/misc.cpp \ + rpc/node.cpp \ rpc/net.cpp \ rpc/output_script.cpp \ rpc/rawtransaction.cpp \ |