diff options
| author | Pieter Wuille <[email protected]> | 2012-05-26 10:17:27 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-05-26 10:17:27 -0700 |
| commit | a52c7a1b65b4a10a36e455d9cbc98265fa6736ba (patch) | |
| tree | 874ba6b64820d168d4e2060de75ea81c4c957650 /src/main.cpp | |
| parent | Merge pull request #1370 from Diapolo/add_startuptime_to_log (diff) | |
| parent | Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress (diff) | |
| download | discoin-a52c7a1b65b4a10a36e455d9cbc98265fa6736ba.tar.xz discoin-a52c7a1b65b4a10a36e455d9cbc98265fa6736ba.zip | |
Merge pull request #1357 from sipa/keyid
Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 96718cf18..9913ae334 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2304,7 +2304,7 @@ unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 }; bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) { - static map<CService, vector<unsigned char> > mapReuseKey; + static map<CService, CPubKey> mapReuseKey; RandAddSeedPerfmon(); if (fDebug) printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size()); |