From d09a9d4bd09b45d226dc2c3ad5759601e246f1d3 Mon Sep 17 00:00:00 2001 From: Oliver Eggert Date: Thu, 2 Mar 2023 13:04:57 -0800 Subject: [PATCH] Fix internal types. --- .../ledger-data/ledger-object-types/feesettings.md | 6 +++--- .../transactions/pseudo-transaction-types/setfee.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/content/references/protocol-reference/ledger-data/ledger-object-types/feesettings.md b/content/references/protocol-reference/ledger-data/ledger-object-types/feesettings.md index b5c7d7d2a6..115456e8b1 100644 --- a/content/references/protocol-reference/ledger-data/ledger-object-types/feesettings.md +++ b/content/references/protocol-reference/ledger-data/ledger-object-types/feesettings.md @@ -46,11 +46,11 @@ If the _[XRPFees amendment][]_ is enabled, the `FeeSettings` object has these fi | Name | JSON Type | [Internal Type][] | Required? | Description | |:------------------------|:----------|:------------------|:----------|:-----------------------| -| `BaseFeeDrops` | String | UInt64 | Yes | The [transaction cost](transaction-cost.html) of the "reference transaction" in drops of XRP. | +| `BaseFeeDrops` | String | Amount | Yes | The [transaction cost](transaction-cost.html) of the "reference transaction" in drops of XRP. | | `Flags` | Number | UInt32 | Yes | A bit-map of boolean flags enabled for this object. Currently, the protocol defines no flags for `FeeSettings` objects. The value is always `0`. | | `LedgerEntryType` | String | UInt16 | Yes | The value `0x0073`, mapped to the string `FeeSettings`, indicates that this object contains the ledger's fee settings. | -| `ReserveBaseDrops` | String | UInt64 | Yes | The [base reserve](reserves.html#base-reserve-and-owner-reserve) for an account in the XRP Ledger, as drops of XRP. | -| `ReserveIncrementDrops` | String | UInt64 | Yes | The incremental [owner reserve](reserves.html#base-reserve-and-owner-reserve) for owning objects, as drops of XRP. | +| `ReserveBaseDrops` | String | Amount | Yes | The [base reserve](reserves.html#base-reserve-and-owner-reserve) for an account in the XRP Ledger, as drops of XRP. | +| `ReserveIncrementDrops` | String | Amount | Yes | The incremental [owner reserve](reserves.html#base-reserve-and-owner-reserve) for owning objects, as drops of XRP. | ## FeeSettings ID Format diff --git a/content/references/protocol-reference/transactions/pseudo-transaction-types/setfee.md b/content/references/protocol-reference/transactions/pseudo-transaction-types/setfee.md index 75acf03144..ad979346c5 100644 --- a/content/references/protocol-reference/transactions/pseudo-transaction-types/setfee.md +++ b/content/references/protocol-reference/transactions/pseudo-transaction-types/setfee.md @@ -46,9 +46,9 @@ If the _[XRPFees amendment][]_ is enabled, `SetFee` pseudo-transactions use thes | Field | JSON Type | [Internal Type][] | Description | |:------------------------|:----------|:------------------|:----------------| -| `BaseFeeDrops` | String | UInt64 | The charge, in drops of XRP, for the reference transaction. (This is the [transaction cost](transaction-cost.html) before scaling for load.) | -| `ReserveBaseDrops` | String | UInt64 | The base reserve, in drops | -| `ReserveIncrementDrops` | String | UInt64 | The incremental reserve, in drops | +| `BaseFeeDrops` | String | Amount | The charge, in drops of XRP, for the reference transaction. (This is the [transaction cost](transaction-cost.html) before scaling for load.) | +| `ReserveBaseDrops` | String | Amount | The base reserve, in drops | +| `ReserveIncrementDrops` | String | Amount | The incremental reserve, in drops | | `LedgerSequence` | Number | UInt32 | _(Omitted for some historical `SetFee` pseudo-transactions)_ The index of the ledger version where this pseudo-transaction appears. This distinguishes the pseudo-transaction from other occurrences of the same change. |