From a9469a7fbd4104301238fdd0b9183c203b686f43 Mon Sep 17 00:00:00 2001 From: wilsonianb Date: Thu, 13 Sep 2018 10:37:04 -0500 Subject: [PATCH] Fix DirectoryNode RootIndex type --- .../ledger-data-formats/ledger-object-types/directorynode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/rippled-api/ledger-data-formats/ledger-object-types/directorynode.md b/content/references/rippled-api/ledger-data-formats/ledger-object-types/directorynode.md index dd69899bb5..ab94f64396 100644 --- a/content/references/rippled-api/ledger-data-formats/ledger-object-types/directorynode.md +++ b/content/references/rippled-api/ledger-data-formats/ledger-object-types/directorynode.md @@ -55,7 +55,7 @@ There are two kinds of Directories: |-------------------|-----------|---------------|-------------| | `LedgerEntryType` | String | UInt16 | The value `0x0064`, mapped to the string `DirectoryNode`, indicates that this object is part of a Directory. | | `Flags` | Number | UInt32 | A bit-map of boolean flags enabled for this directory. Currently, the protocol defines no flags for DirectoryNode objects. | -| `RootIndex` | Number | Hash256 | The ID of root object for this directory. | +| `RootIndex` | String | Hash256 | The ID of root object for this directory. | | `Indexes` | Array | Vector256 | The contents of this Directory: an array of IDs of other objects. | | `IndexNext` | Number | UInt64 | (Optional) If this Directory consists of multiple pages, this ID links to the next object in the chain, wrapping around at the end. | | `IndexPrevious` | Number | UInt64 | (Optional) If this Directory consists of multiple pages, this ID links to the previous object in the chain, wrapping around at the beginning. |