Comment out lots of obsolete LocalAccount stuff.

This commit is contained in:
Arthur Britto
2012-05-16 15:09:16 -07:00
parent 0ca48989d8
commit fc50c5edb8
6 changed files with 141 additions and 53 deletions

View File

@@ -11,6 +11,10 @@ bool LocalTransaction::makeTransaction()
{
if(!!mTransaction) return true;
std::cerr << "LocalTransaction is obsolete." << std::endl;
return false;
#if 0
LocalAccount::pointer lac(theApp->getWallet().findAccountForTransaction(mAmount));
if(!lac)
{
@@ -18,10 +22,6 @@ bool LocalTransaction::makeTransaction()
return false;
}
std::cerr << "LocalTransaction is obsolete." << std::endl;
return false;
#if 0
mTransaction=Transaction::pointer(new Transaction(lac, mDestAcctID, mAmount, mTag,
theApp->getOPs().getCurrentLedgerID()));
if(mTransaction->getStatus()!=NEW)