From bb677558efdc3e5f0759556720b62169469b555d Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Sat, 11 May 2024 09:16:26 +0800 Subject: [PATCH] Re-execute `make gen-rpc-doc` --- rpc/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpc/README.md b/rpc/README.md index 016b32b8b8e..ade3cd07d04 100644 --- a/rpc/README.md +++ b/rpc/README.md @@ -1070,9 +1070,10 @@ The response looks like below when `verbosity` is 0. #### Method `get_live_cell` -* `get_live_cell(out_point, with_data)` +* `get_live_cell(out_point, with_data, include_tx_pool)` * `out_point`: [`OutPoint`](#type-outpoint) * `with_data`: `boolean` + * `include_tx_pool`: `boolean` `|` `null` * result: [`CellWithStatus`](#type-cellwithstatus) Returns the status of a cell. The RPC returns extra information if it is a [live cell](#live-cell). @@ -1092,6 +1093,7 @@ result. * `out_point` - Reference to the cell by transaction hash and output index. * `with_data` - Whether the RPC should return cell data. Cell data can be huge, if the client does not need the data, it should set this to `false` to save bandwidth. +* `include_tx_pool` - Whether the RPC check live cell in TxPool, default is false. ###### Examples