refactor: Move RPCNotifyBlockChange out of `rpc/server.h`

This commit is contained in:
Wladimir J. van der Laan 2017-03-27 16:04:31 +02:00
parent e6dcfeec05
commit 8d8f28dd52
3 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,7 @@
#include "policy/policy.h"
#include "rpc/server.h"
#include "rpc/register.h"
#include "rpc/blockchain.h"
#include "script/standard.h"
#include "script/sigcache.h"
#include "scheduler.h"

View File

@ -16,5 +16,8 @@ class CBlockIndex;
*/
double GetDifficulty(const CBlockIndex* blockindex = nullptr);
/** Callback for when block tip changed. */
void RPCNotifyBlockChange(bool ibd, const CBlockIndex *);
#endif

View File

@ -198,7 +198,6 @@ bool StartRPC();
void InterruptRPC();
void StopRPC();
std::string JSONRPCExecBatch(const UniValue& vReq);
void RPCNotifyBlockChange(bool ibd, const CBlockIndex *);
// Retrieves any serialization flags requested in command line argument
int RPCSerializationFlags();