aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcwallet.cpp
diff options
context:
space:
mode:
authorinstagibbs <gsanders87@gmail.com>2016-09-09 12:13:18 -0400
committerinstagibbs <gsanders87@gmail.com>2016-09-09 12:15:08 -0400
commit62ffbbdec30699941069baeae61716ff12155ba6 (patch)
tree773a6a8b2b00d909d14307886326a485f5f77780 /src/wallet/rpcwallet.cpp
parent5b2ea29cf4fd298346437bb16a54407f8c1f9dca (diff)
downloadbitcoin-62ffbbdec30699941069baeae61716ff12155ba6.tar.xz
add witness address to address book
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r--src/wallet/rpcwallet.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 0ba6706baf..533220ff85 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -1087,6 +1087,8 @@ UniValue addwitnessaddress(const UniValue& params, bool fHelp)
throw JSONRPCError(RPC_WALLET_ERROR, "Public key or redeemscript not known to wallet");
}
+ pwalletMain->SetAddressBook(w.result, "", "receive");
+
return CBitcoinAddress(w.result).ToString();
}