Two missing connector functions.

This commit is contained in:
JoelKatz
2012-05-22 22:06:47 -07:00
parent 5a3bd08b4a
commit de71747bf8

View File

@@ -167,3 +167,16 @@ bool LedgerConsensus::peerPosition(LedgerProposal::pointer newPosition)
addPosition(*currentPosition);
return true;
}
bool LedgerConsensus::peerHasSet(Peer::pointer peer, const std::vector<uint256>& sets)
{
// WRITEME
return true;
}
bool LedgerConsensus::peerGaveNodes(Peer::pointer peer, const uint256& setHash,
const std::list<SHAMapNode>& nodeIDs, const std::list< std::vector<unsigned char> >& nodeData)
{
// WRITEME
return true;
}