mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix foundResume check in account_tx
This commit is contained in:
@@ -1844,7 +1844,7 @@ NetworkOPsImp::getTxsAccount (const RippleAddress& account, int32 minLedger, int
|
||||
uint32 NONBINARY_PAGE_LENGTH = 200;
|
||||
uint32 EXTRA_LENGTH = 20;
|
||||
|
||||
bool foundResume = !token.isObject();
|
||||
bool foundResume = token.isNull() || !token.isObject();
|
||||
|
||||
uint32 numberOfResults, queryLimit;
|
||||
if (limit <= 0)
|
||||
@@ -1956,7 +1956,7 @@ NetworkOPsImp::getTxsAccountB (const RippleAddress& account, int32 minLedger, in
|
||||
uint32 BINARY_PAGE_LENGTH = 500;
|
||||
uint32 EXTRA_LENGTH = 20;
|
||||
|
||||
bool foundResume = !token.isObject();
|
||||
bool foundResume = token.isNull() || !token.isObject();
|
||||
|
||||
uint32 numberOfResults, queryLimit;
|
||||
if (limit <= 0)
|
||||
|
||||
Reference in New Issue
Block a user