diff options
| author | Wladimir J. van der Laan <[email protected]> | 2019-02-17 02:43:45 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2019-02-17 02:43:57 +0100 |
| commit | 2d0337992d8146fa9f6dc9470d73890fdcd67f20 (patch) | |
| tree | 62ffe2369fc21036df83f04f3411509fe073b4da /src | |
| parent | Merge #15398: msvc: add rapidcheck property tests (diff) | |
| parent | [Doc] importmulti: add missing description of keypool option (diff) | |
| download | discoin-2d0337992d8146fa9f6dc9470d73890fdcd67f20.tar.xz discoin-2d0337992d8146fa9f6dc9470d73890fdcd67f20.zip | |
Merge #15426: [Doc] importmulti: add missing description of keypool option
a607c9ae4c2730fca5ce340c400c95c87e498a7c [Doc] importmulti: add missing description of keypool option (David A. Harding)
Pull request description:
Option was added in #14075 but not documented there.
CC: @achow101
Tree-SHA512: dcb6421fa1be3d733d7a00c1b57ffd591fe76c02d1c479e729089c118bec52f53bd7ebdb5454b3b1c7603ab189e91682a688b673a7f6b04fa8610c4249711217
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/rpcdump.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 66a52c127..f38202a2b 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -1382,6 +1382,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest) {"internal", RPCArg::Type::BOOL, /* default */ "false", "Stating whether matching outputs should be treated as not incoming payments (also known as change)"}, {"watchonly", RPCArg::Type::BOOL, /* default */ "false", "Stating whether matching outputs should be considered watchonly."}, {"label", RPCArg::Type::STR, /* default */ "''", "Label to assign to the address, only allowed with internal=false"}, + {"keypool", RPCArg::Type::BOOL, /* default */ "false", "Stating whether imported public keys should be added to the keypool for when users request new addresses. Only allowed when wallet private keys are disabled"}, }, }, }, |