diff options
| author | Pieter Wuille <[email protected]> | 2016-04-16 12:25:12 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-05-29 01:52:17 +0200 |
| commit | fa2637a3beb8677067015df3d9d7b394fa837c2f (patch) | |
| tree | 9325bb10a5fe3e220d040827b82f7da5b42fc346 /src/main.cpp | |
| parent | Merge #8108: Trivial: Remove unused local variable shadowing upper local (diff) | |
| download | discoin-fa2637a3beb8677067015df3d9d7b394fa837c2f.tar.xz discoin-fa2637a3beb8677067015df3d9d7b394fa837c2f.zip | |
Always require OS randomness when generating secret keys
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ed157b53d..ffc57d48b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4547,7 +4547,6 @@ void static ProcessGetData(CNode* pfrom, const Consensus::Params& consensusParam bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, int64_t nTimeReceived, const CChainParams& chainparams) { - RandAddSeedPerfmon(); LogPrint("net", "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand), vRecv.size(), pfrom->id); if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0) { |