mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Trap attempts to duplicate unduplicatable instances.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
#include "SerializedLedger.h"
|
||||
#include "NetworkOPs.h"
|
||||
|
||||
class RPCServer : public boost::enable_shared_from_this<RPCServer>
|
||||
class RPCServer : public boost::enable_shared_from_this<RPCServer>
|
||||
{
|
||||
private:
|
||||
NetworkOPs* mNetOps;
|
||||
@@ -25,6 +25,9 @@ private:
|
||||
|
||||
RPCServer(boost::asio::io_service& io_service, NetworkOPs* nopNetwork);
|
||||
|
||||
RPCServer(const RPCServer&); // no implementation
|
||||
RPCServer& operator=(const RPCServer&); // no implementation
|
||||
|
||||
void handle_write(const boost::system::error_code& error);
|
||||
|
||||
void handle_read(const boost::system::error_code& e, std::size_t bytes_transferred);
|
||||
|
||||
@@ -25,6 +25,9 @@ private:
|
||||
bool nodeIdentityLoad();
|
||||
bool nodeIdentityCreate();
|
||||
|
||||
Wallet(const Wallet&); // no implementation
|
||||
Wallet& operator=(const Wallet&); // no implementation
|
||||
|
||||
protected:
|
||||
boost::recursive_mutex mLock;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user