diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-03-20 10:51:15 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-03-20 10:51:15 +0100 |
commit | bb6195e34daa7e4b2df49c77e82a1787e3810ec9 (patch) | |
tree | 9953f5c1191ce49aa8e78ce538ed0c574b9b1cf9 /src | |
parent | e45b7f20e651898c5b476c2364fd9d1fd583f3af (diff) |
refactor: Remove unused function
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 31a3209a49..ddf62b2e1b 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3881,19 +3881,6 @@ UniValue sethdseed(const JSONRPCRequest& request) return NullUniValue; } -void AddKeypathToMap(const CWallet* pwallet, const CKeyID& keyID, std::map<CPubKey, KeyOriginInfo>& hd_keypaths) -{ - CPubKey vchPubKey; - if (!pwallet->GetPubKey(keyID, vchPubKey)) { - return; - } - KeyOriginInfo info; - if (!pwallet->GetKeyOrigin(keyID, info)) { - throw JSONRPCError(RPC_INTERNAL_ERROR, "Internal keypath is broken"); - } - hd_keypaths.emplace(vchPubKey, std::move(info)); -} - UniValue walletprocesspsbt(const JSONRPCRequest& request) { std::shared_ptr<CWallet> const wallet = GetWalletForJSONRPCRequest(request); |