Add ~InboundLedger

This commit is contained in:
Vinnie Falco
2013-08-22 15:10:09 -07:00
parent 382b358bdf
commit 8b86b81fc9
2 changed files with 6 additions and 5 deletions

View File

@@ -40,6 +40,10 @@ bool InboundLedger::checkLocal ()
return false;
}
InboundLedger::~InboundLedger ()
{
}
bool InboundLedger::tryLocal ()
{
// return value: true = no more work to do

View File

@@ -22,10 +22,7 @@ public:
public:
InboundLedger (uint256 const& hash, uint32 seq);
virtual ~InboundLedger ()
{
;
}
virtual ~InboundLedger ();
bool isBase () const
{
@@ -56,7 +53,7 @@ public:
return mSeq;
}
// VFALCO TODO Make thise the Listener / Observer pattern
// VFALCO TODO Make this the Listener / Observer pattern
bool addOnComplete (FUNCTION_TYPE<void (InboundLedger::pointer)>);
bool takeBase (const std::string& data);