diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-15 12:06:43 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-15 11:59:57 +0200 |
commit | fa22ddc7d570feda649bedebeacd42a3b67ce24c (patch) | |
tree | 2d5074bf11f9de7ff29160baf9c40cae848327b8 /src/wallet | |
parent | 40a9037a1b5d990637d7f5009fc0c39628ed2c05 (diff) |
doc: Fix walletdisplayaddress RPC doc
Diffstat (limited to 'src/wallet')
-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,"","", |