RPC: Add description for InstantSend-related fields of mempool entry (#2050)

This commit is contained in:
UdjinM6 2018-04-30 01:09:47 +03:00 committed by GitHub
parent 8e24b087b4
commit 6ab1fd7636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -346,7 +346,9 @@ std::string EntryDescriptionString()
" \"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one)\n" " \"ancestorfees\" : n, (numeric) modified fees (see above) of in-mempool ancestors (including this one)\n"
" \"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n" " \"depends\" : [ (array) unconfirmed transactions used as inputs for this transaction\n"
" \"transactionid\", (string) parent transaction id\n" " \"transactionid\", (string) parent transaction id\n"
" ... ]\n"; " ... ],\n"
" \"instantsend\" : true|false, (boolean) True if this transaction was sent as an InstantSend one\n"
" \"instantlock\" : true|false (boolean) True if this transaction was locked via InstantSend\n";
} }
void entryToJSON(UniValue &info, const CTxMemPoolEntry &e) void entryToJSON(UniValue &info, const CTxMemPoolEntry &e)