From 89748aad3703ae35956257e2de27be5896f1a419 Mon Sep 17 00:00:00 2001 From: Stefan Thomas Date: Thu, 5 Sep 2013 22:02:38 -0700 Subject: [PATCH] Fix typo breaking resume functionality. --- modules/ripple_app/misc/NetworkOPs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ripple_app/misc/NetworkOPs.cpp b/modules/ripple_app/misc/NetworkOPs.cpp index 8a89863cc..f93793d80 100644 --- a/modules/ripple_app/misc/NetworkOPs.cpp +++ b/modules/ripple_app/misc/NetworkOPs.cpp @@ -1843,7 +1843,7 @@ NetworkOPsImp::getTxsAccount (const RippleAddress& account, int32 minLedger, int if (!token.isMember("ledger") || !token.isMember("seq")) return ret; findLedger = token["ledger"].asInt(); - findSeq = token["ledger"].asInt(); + findSeq = token["seq"].asInt(); } catch (...) {