diff options
author | Daniel Cousens <github@dcousens.com> | 2016-01-15 11:55:17 +1100 |
---|---|---|
committer | Daniel Cousens <github@dcousens.com> | 2016-01-21 08:36:55 +1100 |
commit | a0eaff8a1d18ebba33cdea4cd1efaddeb55519e7 (patch) | |
tree | 5f13a0b8968d60274d86c44b685c9c980f7a33ca /src/qt | |
parent | b92ea98503e64ea6ddc5c04b879e59b1755d5efc (diff) |
move rpc* to rpc/
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 | ||||
-rw-r--r-- | src/qt/rpcconsole.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index dcf752cc32..b33df45fb9 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -26,7 +26,7 @@ #endif #include "init.h" -#include "rpcserver.h" +#include "rpc/server.h" #include "scheduler.h" #include "ui_interface.h" #include "util.h" diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 7178bc00e6..2658e867ce 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -12,8 +12,8 @@ #include "bantablemodel.h" #include "chainparams.h" -#include "rpcserver.h" -#include "rpcclient.h" +#include "rpc/server.h" +#include "rpc/client.h" #include "util.h" #include <openssl/crypto.h> |