Browse Source

Fix UB in no Plaintext wallet.dat #85

relaytx
Duke Leto 2 years ago
parent
commit
fffa06d138
  1. 2
      src/rpc/server.cpp

2
src/rpc/server.cpp

@ -42,7 +42,7 @@ using namespace RPCServer;
using namespace std;
extern uint16_t ASSETCHAINS_P2PPORT,ASSETCHAINS_RPCPORT;
static bool fRPCRunning = false;
static std::atomic<bool> fRPCRunning {false};
static bool fRPCInWarmup = true;
static std::string rpcWarmupStatus("RPC server started");
static CCriticalSection cs_rpcWarmup;

Loading…
Cancel
Save