From 932be02e9ee7bce9b65e9d047d7fabf4d9e3b285 Mon Sep 17 00:00:00 2001 From: Robert Zhang Date: Fri, 20 Dec 2019 23:16:23 -0800 Subject: [PATCH] Document message type 'path_find' that connection can listen on --- docs/index.md | 1 + docs/src/rippledAPIs.md.ejs | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/index.md b/docs/index.md index 48e159bb..12ff848b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -834,6 +834,7 @@ Type | Description `manifestReceived` | Sent by the `manifests` stream when the server receives a manifest. `transaction` | Sent by many subscriptions including `transactions`, `transactions_proposed`, `accounts`, `accounts_proposed`, and `book` (Order Book). See [Transaction Streams](https://ripple.com/build/rippled-apis/#transaction-streams) for details. `peerStatusChange` | (Admin-only) Reports a large amount of information on the activities of other `rippled` servers to which the server is connected. +`path_find` | Asynchronous follow-up response to the currently open path\_find request. See [rippled path\_find method](https://xrpl.org/path_find.html) for details. To register your listener function, use `connection.on(type, handler)`. diff --git a/docs/src/rippledAPIs.md.ejs b/docs/src/rippledAPIs.md.ejs index c34c8f13..10cc2aa8 100644 --- a/docs/src/rippledAPIs.md.ejs +++ b/docs/src/rippledAPIs.md.ejs @@ -39,6 +39,7 @@ Type | Description `manifestReceived` | Sent by the `manifests` stream when the server receives a manifest. `transaction` | Sent by many subscriptions including `transactions`, `transactions_proposed`, `accounts`, `accounts_proposed`, and `book` (Order Book). See [Transaction Streams](https://ripple.com/build/rippled-apis/#transaction-streams) for details. `peerStatusChange` | (Admin-only) Reports a large amount of information on the activities of other `rippled` servers to which the server is connected. +`path_find` | Asynchronous follow-up response to the currently open path\_find request. See [rippled path\_find method](https://xrpl.org/path_find.html) for details. To register your listener function, use `connection.on(type, handler)`.