From f3d6bd4be4634bb87b29cf92eb3fb520da64851b Mon Sep 17 00:00:00 2001 From: Omar Khan Date: Mon, 9 Jan 2023 17:51:33 -0500 Subject: [PATCH] remove invalid fields from ammInfo.ts response model --- packages/xrpl/src/models/methods/ammInfo.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages/xrpl/src/models/methods/ammInfo.ts b/packages/xrpl/src/models/methods/ammInfo.ts index 4a63df93..eaf6fd9f 100644 --- a/packages/xrpl/src/models/methods/ammInfo.ts +++ b/packages/xrpl/src/models/methods/ammInfo.ts @@ -115,18 +115,6 @@ export interface AMMInfoResponse extends BaseResponse { * Keeps a track of up to eight active votes for the instance. */ vote_slots?: VoteEntry[] - - /** - * The ledger index of the current in-progress ledger, which was used when - * retrieving this information. - */ - ledger_current_index?: number - - /** - * True if this data is from a validated ledger version; if omitted or set - * to false, this data is not final. - */ - validated?: boolean } /**