diff options
| author | Amiti Uttarwar <[email protected]> | 2020-05-23 11:02:53 -0700 |
|---|---|---|
| committer | Amiti Uttarwar <[email protected]> | 2020-05-25 11:27:07 -0700 |
| commit | 8f30260a67166a6ab7c0f33f7ec1990d3c31761e (patch) | |
| tree | a9ab3d9e8eebf39b718ca1668885641379c112e1 | |
| parent | [trivial] Remove misleading 'const' (diff) | |
| download | discoin-8f30260a67166a6ab7c0f33f7ec1990d3c31761e.tar.xz discoin-8f30260a67166a6ab7c0f33f7ec1990d3c31761e.zip | |
[doc] Update unbroadcast description in RPC results
| -rw-r--r-- | src/rpc/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 717ca308a..287b73b7b 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -414,7 +414,7 @@ static std::vector<RPCResult> MempoolEntryDescription() { return { RPCResult{RPCResult::Type::ARR, "spentby", "unconfirmed transactions spending outputs from this transaction", {RPCResult{RPCResult::Type::STR_HEX, "transactionid", "child transaction id"}}}, RPCResult{RPCResult::Type::BOOL, "bip125-replaceable", "Whether this transaction could be replaced due to BIP125 (replace-by-fee)"}, - RPCResult{RPCResult::Type::BOOL, "unbroadcast", "Whether this transaction is currently unbroadcast (initial broadcast not yet confirmed)"}, + RPCResult{RPCResult::Type::BOOL, "unbroadcast", "Whether this transaction is currently unbroadcast (initial broadcast not yet acknowledged by any peers)"}, };} static void entryToJSON(const CTxMemPool& pool, UniValue& info, const CTxMemPoolEntry& e) EXCLUSIVE_LOCKS_REQUIRED(pool.cs) |