Backout two changes not ready for prime time.

This commit is contained in:
JoelKatz
2013-05-06 21:00:59 -07:00
parent 057f6861b6
commit 9b937c10d3
2 changed files with 3 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ const int SYSTEM_WEBSOCKET_PUBLIC_PORT = 6563; // XXX Going away.
#define DEFAULT_PEER_CONNECT_LOW_WATER 4
// Grows exponentially worse.
#define DEFAULT_PATH_SEARCH_SIZE 5
#define DEFAULT_PATH_SEARCH_SIZE 4
enum SizedItemName
{

View File

@@ -8,6 +8,7 @@ SETUP_LOG();
bool TransactionEngine::checkInvariants(TER result, const SerializedTransaction& txn, TransactionEngineParams params)
{
#if 0
const RippleAddress& srcAccount = txn.getFieldAccount(sfAccount);
uint32 txnSeq = txn.getFieldU32(sfSequence);
@@ -65,6 +66,7 @@ bool TransactionEngine::checkInvariants(TER result, const SerializedTransaction&
assert(false);
return tefINTERNAL;
}
#endif
return true;
}