From ee615a290b5c07a2948fc8a1dd43ca71b55889a6 Mon Sep 17 00:00:00 2001 From: Nathan Nichols Date: Thu, 2 Jun 2022 16:21:55 -0500 Subject: [PATCH] report transactions as validated in account_tx (#165) --- src/rpc/handlers/AccountTx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpc/handlers/AccountTx.cpp b/src/rpc/handlers/AccountTx.cpp index 2100d476a..fe0a44de0 100644 --- a/src/rpc/handlers/AccountTx.cpp +++ b/src/rpc/handlers/AccountTx.cpp @@ -179,6 +179,7 @@ doAccountTx(Context const& context) obj[JS(ledger_index)] = txnPlusMeta.ledgerSequence; obj[JS(date)] = txnPlusMeta.date; } + obj[JS(validated)] = true; txns.push_back(obj); if (!minReturnedIndex || txnPlusMeta.ledgerSequence < *minReturnedIndex)