mirror of
https://github.com/XRPLF/clio.git
synced 2025-12-06 17:27:58 +00:00
account_info doesn't need ledger_index. fix bug where multiple
ledger objects are fetched
This commit is contained in:
@@ -489,7 +489,8 @@ public:
|
||||
|
||||
query = {};
|
||||
query << "SELECT object, sequence FROM " << tableName << "flat"
|
||||
<< " WHERE key = ? AND sequence <= ? ORDER BY sequence DESC";
|
||||
<< " WHERE key = ? AND sequence <= ? ORDER BY sequence DESC "
|
||||
"LIMIT 1";
|
||||
prepare_future =
|
||||
cass_session_prepare(session_.get(), query.str().c_str());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user