diff --git a/api/doc/spec.json b/api/doc/spec.json index 64801e6a3fb97..b640dd8ac94a9 100644 --- a/api/doc/spec.json +++ b/api/doc/spec.json @@ -8883,7 +8883,7 @@ "$ref": "#/components/schemas/U64" }, "in": "query", - "description": "Ledger version to start list of transactions\n\nIf not provided, defaults to showing the latest transactions", + "description": "Account sequence number to start list of transactions\n\nIf not provided, defaults to showing the latest transactions", "required": false, "deprecated": false, "explode": true diff --git a/api/doc/spec.yaml b/api/doc/spec.yaml index 502c7e2880601..7ec58a5e708ab 100644 --- a/api/doc/spec.yaml +++ b/api/doc/spec.yaml @@ -6644,7 +6644,7 @@ paths: $ref: '#/components/schemas/U64' in: query description: |- - Ledger version to start list of transactions + Account sequence number to start list of transactions If not provided, defaults to showing the latest transactions required: false diff --git a/api/src/transactions.rs b/api/src/transactions.rs index ccbcfe2327ed7..790729dc08e09 100644 --- a/api/src/transactions.rs +++ b/api/src/transactions.rs @@ -248,7 +248,7 @@ impl TransactionsApi { accept_type: AcceptType, /// Address of account with or without a `0x` prefix address: Path
, - /// Ledger version to start list of transactions + /// Account sequence number to start list of transactions /// /// If not provided, defaults to showing the latest transactions start: Query