diff --git a/src/LedgerConsensus.cpp b/src/LedgerConsensus.cpp index 50d58973b0..abc2575145 100644 --- a/src/LedgerConsensus.cpp +++ b/src/LedgerConsensus.cpp @@ -167,3 +167,16 @@ bool LedgerConsensus::peerPosition(LedgerProposal::pointer newPosition) addPosition(*currentPosition); return true; } + +bool LedgerConsensus::peerHasSet(Peer::pointer peer, const std::vector& sets) +{ + // WRITEME + return true; +} + +bool LedgerConsensus::peerGaveNodes(Peer::pointer peer, const uint256& setHash, + const std::list& nodeIDs, const std::list< std::vector >& nodeData) +{ + // WRITEME + return true; +}