diff options
author | fanquake <fanquake@gmail.com> | 2021-09-16 08:49:57 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-09-16 08:51:10 +0800 |
commit | bd5670eafcfbdf2b0bcb2c74655f860bac8eef45 (patch) | |
tree | dfe8f042481d97c1d6c331e5b044a51c71fa7b62 /src/wallet/rpcwallet.cpp | |
parent | 528e08119fd837dfe73d80d0064409ac03b3bfee (diff) | |
parent | fa22ddc7d570feda649bedebeacd42a3b67ce24c (diff) |
Merge bitcoin/bitcoin#22979: doc: Fix walletdisplayaddress RPC doc
fa22ddc7d570feda649bedebeacd42a3b67ce24c doc: Fix walletdisplayaddress RPC doc (MarcoFalke)
Pull request description:
Previously the description was empty
ACKs for top commit:
fanquake:
ACK fa22ddc7d570feda649bedebeacd42a3b67ce24c
Tree-SHA512: f8898f9545378dd9f68eba036745776c1bc8d43c4753a19fcd9c3d945a11d9e07cd394d9ed215c2d090964830f785f812f18608f04fc7e2fb73730fc77c5d807
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index ff9e10c5ad..e922f4ede9 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4650,10 +4650,11 @@ static RPCHelpMan upgradewallet() #ifdef ENABLE_EXTERNAL_SIGNER static RPCHelpMan walletdisplayaddress() { - return RPCHelpMan{"walletdisplayaddress", + return RPCHelpMan{ + "walletdisplayaddress", "Display address on an external signer for verification.", { - {"address", RPCArg::Type::STR, RPCArg::Optional::NO, /* default_val */ "", "bitcoin address to display"}, + {"address", RPCArg::Type::STR, RPCArg::Optional::NO, "bitcoin address to display"}, }, RPCResult{ RPCResult::Type::OBJ,"","", |