Set page sizes for ledger_data correctly (RIPD-249)

This commit is contained in:
sublimator
2014-09-19 20:45:00 +07:00
committed by Nik Bougalis
parent a0c903c68c
commit f81b084448

View File

@@ -32,8 +32,8 @@ namespace ripple {
// marker: resume point, if any
Json::Value doLedgerData (RPC::Context& context)
{
int const BINARY_PAGE_LENGTH = 256;
int const JSON_PAGE_LENGTH = 2048;
int const BINARY_PAGE_LENGTH = 2048;
int const JSON_PAGE_LENGTH = 256;
Ledger::pointer lpLedger;