Browse Source

dhtget/dhtput threadsafe

miguelfreitas
Miguel Freitas 11 years ago
parent
commit
8ed88a6eb3
  1. 4
      src/bitcoinrpc.cpp

4
src/bitcoinrpc.cpp

@ -236,8 +236,8 @@ static const CRPCCommand vRPCCommands[] = @@ -236,8 +236,8 @@ static const CRPCCommand vRPCCommands[] =
{ "sendnewusertransaction", &sendnewusertransaction, false, false },
{ "verifychain", &verifychain, true, false },
// twister dht network
{ "dhtput", &dhtput, false, false },
{ "dhtget", &dhtget, false, false },
{ "dhtput", &dhtput, false, true },
{ "dhtget", &dhtget, false, true },
};
CRPCTable::CRPCTable()

Loading…
Cancel
Save