diff options
| author | Gavin Andresen <[email protected]> | 2011-10-01 11:57:51 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-10-01 11:57:51 -0700 |
| commit | ad9ceecf9c8c5979c61aea1eb6df6cf99ebe3dd2 (patch) | |
| tree | 65dd48771c3b9c89346475897c06d701550ceffc /src/main.cpp | |
| parent | Merge pull request #524 from sipa/signandverif (diff) | |
| parent | Added RPC call 'getmemorypool' that provides everything needed to construct a... (diff) | |
| download | discoin-ad9ceecf9c8c5979c61aea1eb6df6cf99ebe3dd2.tar.xz discoin-ad9ceecf9c8c5979c61aea1eb6df6cf99ebe3dd2.zip | |
Merge pull request #476 from forrestv/getmemorypool
Added RPC call 'getmemorypool' for p2p mining pools
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 472c80a33..750290ccc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1338,7 +1338,7 @@ bool CBlock::AcceptBlock() return true; } -bool static ProcessBlock(CNode* pfrom, CBlock* pblock) +bool ProcessBlock(CNode* pfrom, CBlock* pblock) { // Check for duplicate uint256 hash = pblock->GetHash(); |