diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-11-18 12:11:17 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-11-18 12:11:17 -0500 |
commit | e3560029ceb7899b6c8a9d59d803de7190ff65bd (patch) | |
tree | dda0ff263be6a9d329ee83293414b4a784866da4 /src | |
parent | 7715c847472f565ca79429db0d8505f126617878 (diff) | |
parent | e2f30d547f733ee33e7814ab500c08d12958e66a (diff) |
Merge pull request #5301
Diffstat (limited to 'src')
-rw-r--r-- | src/rest.cpp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index 89075887a0..9a8793a517 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -11,6 +11,7 @@ #include "core/transaction.h" #include "version.h" #include "main.h" +#include "sync.h" using namespace std; using namespace json_spirit; @@ -80,13 +81,17 @@ static bool rest_block(AcceptedConnection *conn, if (!ParseHashStr(hashStr, hash)) throw RESTERR(HTTP_BAD_REQUEST, "Invalid hash: " + hashStr); - if (mapBlockIndex.count(hash) == 0) - throw RESTERR(HTTP_NOT_FOUND, hashStr + " not found"); - CBlock block; - CBlockIndex* pblockindex = mapBlockIndex[hash]; - if (!ReadBlockFromDisk(block, pblockindex)) - throw RESTERR(HTTP_NOT_FOUND, hashStr + " not found"); + CBlockIndex* pblockindex = NULL; + { + LOCK(cs_main); + if (mapBlockIndex.count(hash) == 0) + throw RESTERR(HTTP_NOT_FOUND, hashStr + " not found"); + + pblockindex = mapBlockIndex[hash]; + if (!ReadBlockFromDisk(block, pblockindex)) + throw RESTERR(HTTP_NOT_FOUND, hashStr + " not found"); + } CDataStream ssBlock(SER_NETWORK, PROTOCOL_VERSION); ssBlock << block; |