Don't check the node store for proposed txn nodes

This commit is contained in:
David Schwartz
2014-02-26 13:59:35 -08:00
committed by Vinnie Falco
parent 2c515636cb
commit 81082ad10f

View File

@@ -933,6 +933,12 @@ SHAMapTreeNode* SHAMap::getNodeAsync (
if (!ptr)
{
if (mType == smtTRANSACTION)
{
// We don't store proposed transaction nodes in the node store
return nullptr;
}
NodeObject::pointer obj;
if (!getApp().getNodeStore().asyncFetch (hash, obj))