2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2018-2020 The Bitcoin Core developers
|
2017-04-17 16:10:47 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
#include <interfaces/wallet.h>
|
2017-04-17 16:10:47 -03:00
|
|
|
|
2017-04-17 19:56:44 -03:00
|
|
|
#include <amount.h>
|
2017-05-30 15:55:17 -04:00
|
|
|
#include <interfaces/chain.h>
|
2018-04-07 04:42:02 -03:00
|
|
|
#include <interfaces/handler.h>
|
2018-04-07 13:12:46 -03:00
|
|
|
#include <policy/fees.h>
|
2017-04-17 19:56:44 -03:00
|
|
|
#include <primitives/transaction.h>
|
2020-05-28 02:13:19 -04:00
|
|
|
#include <rpc/server.h>
|
2017-04-17 19:56:44 -03:00
|
|
|
#include <script/standard.h>
|
|
|
|
#include <support/allocators/secure.h>
|
|
|
|
#include <sync.h>
|
|
|
|
#include <uint256.h>
|
2020-01-16 17:56:58 -03:00
|
|
|
#include <util/check.h>
|
2020-05-28 02:13:19 -04:00
|
|
|
#include <util/ref.h>
|
2017-05-30 15:55:17 -04:00
|
|
|
#include <util/system.h>
|
2020-06-19 18:07:18 -04:00
|
|
|
#include <util/ui_change_type.h>
|
2020-05-28 02:13:19 -04:00
|
|
|
#include <wallet/context.h>
|
2017-04-17 19:56:44 -03:00
|
|
|
#include <wallet/feebumper.h>
|
2018-04-07 13:12:46 -03:00
|
|
|
#include <wallet/fees.h>
|
2019-06-06 03:53:16 -04:00
|
|
|
#include <wallet/ismine.h>
|
2019-04-02 18:11:26 -03:00
|
|
|
#include <wallet/load.h>
|
2019-09-23 15:25:10 -03:00
|
|
|
#include <wallet/rpcwallet.h>
|
2017-04-17 16:10:47 -03:00
|
|
|
#include <wallet/wallet.h>
|
|
|
|
|
2017-05-30 15:55:17 -04:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
namespace interfaces {
|
2017-04-17 16:10:47 -03:00
|
|
|
namespace {
|
|
|
|
|
2017-04-18 17:42:30 -03:00
|
|
|
//! Construct wallet tx struct.
|
2019-04-29 09:52:01 -04:00
|
|
|
WalletTx MakeWalletTx(CWallet& wallet, const CWalletTx& wtx)
|
2017-04-18 17:42:30 -03:00
|
|
|
{
|
|
|
|
WalletTx result;
|
|
|
|
result.tx = wtx.tx;
|
|
|
|
result.txin_is_mine.reserve(wtx.tx->vin.size());
|
|
|
|
for (const auto& txin : wtx.tx->vin) {
|
|
|
|
result.txin_is_mine.emplace_back(wallet.IsMine(txin));
|
|
|
|
}
|
|
|
|
result.txout_is_mine.reserve(wtx.tx->vout.size());
|
|
|
|
result.txout_address.reserve(wtx.tx->vout.size());
|
|
|
|
result.txout_address_is_mine.reserve(wtx.tx->vout.size());
|
|
|
|
for (const auto& txout : wtx.tx->vout) {
|
|
|
|
result.txout_is_mine.emplace_back(wallet.IsMine(txout));
|
|
|
|
result.txout_address.emplace_back();
|
|
|
|
result.txout_address_is_mine.emplace_back(ExtractDestination(txout.scriptPubKey, result.txout_address.back()) ?
|
2019-10-07 15:11:34 -03:00
|
|
|
wallet.IsMine(result.txout_address.back()) :
|
2017-04-18 17:42:30 -03:00
|
|
|
ISMINE_NO);
|
|
|
|
}
|
2019-04-29 09:52:01 -04:00
|
|
|
result.credit = wtx.GetCredit(ISMINE_ALL);
|
2017-04-18 17:42:30 -03:00
|
|
|
result.debit = wtx.GetDebit(ISMINE_ALL);
|
|
|
|
result.change = wtx.GetChange();
|
|
|
|
result.time = wtx.GetTxTime();
|
|
|
|
result.value_map = wtx.mapValue;
|
|
|
|
result.is_coinbase = wtx.IsCoinBase();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Construct wallet tx status struct.
|
2019-07-16 17:01:46 -04:00
|
|
|
WalletTxStatus MakeWalletTxStatus(CWallet& wallet, const CWalletTx& wtx)
|
2017-04-18 17:42:30 -03:00
|
|
|
{
|
|
|
|
WalletTxStatus result;
|
2020-01-16 17:56:58 -03:00
|
|
|
result.block_height = wtx.m_confirm.block_height > 0 ? wtx.m_confirm.block_height : std::numeric_limits<int>::max();
|
2019-04-29 09:52:01 -04:00
|
|
|
result.blocks_to_maturity = wtx.GetBlocksToMaturity();
|
|
|
|
result.depth_in_main_chain = wtx.GetDepthInMainChain();
|
2017-04-18 17:42:30 -03:00
|
|
|
result.time_received = wtx.nTimeReceived;
|
|
|
|
result.lock_time = wtx.tx->nLockTime;
|
2019-07-16 17:01:46 -04:00
|
|
|
result.is_final = wallet.chain().checkFinalTx(*wtx.tx);
|
|
|
|
result.is_trusted = wtx.IsTrusted();
|
2017-04-18 17:42:30 -03:00
|
|
|
result.is_abandoned = wtx.isAbandoned();
|
|
|
|
result.is_coinbase = wtx.IsCoinBase();
|
2019-04-29 09:52:01 -04:00
|
|
|
result.is_in_main_chain = wtx.IsInMainChain();
|
2017-04-18 17:42:30 -03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:46:08 -03:00
|
|
|
//! Construct wallet TxOut struct.
|
2019-04-29 09:52:01 -04:00
|
|
|
WalletTxOut MakeWalletTxOut(CWallet& wallet,
|
2017-07-31 15:30:21 -04:00
|
|
|
const CWalletTx& wtx,
|
|
|
|
int n,
|
|
|
|
int depth) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
|
2017-04-17 20:46:08 -03:00
|
|
|
{
|
|
|
|
WalletTxOut result;
|
|
|
|
result.txout = wtx.tx->vout[n];
|
|
|
|
result.time = wtx.GetTxTime();
|
|
|
|
result.depth_in_main_chain = depth;
|
2019-04-29 09:52:01 -04:00
|
|
|
result.is_spent = wallet.IsSpent(wtx.GetHash(), n);
|
2017-04-17 20:46:08 -03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-04-17 16:10:47 -03:00
|
|
|
class WalletImpl : public Wallet
|
|
|
|
{
|
|
|
|
public:
|
2019-02-21 12:26:29 -03:00
|
|
|
explicit WalletImpl(const std::shared_ptr<CWallet>& wallet) : m_wallet(wallet) {}
|
2017-04-17 16:10:47 -03:00
|
|
|
|
2017-04-17 19:56:44 -03:00
|
|
|
bool encryptWallet(const SecureString& wallet_passphrase) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return m_wallet->EncryptWallet(wallet_passphrase);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
bool isCrypted() override { return m_wallet->IsCrypted(); }
|
|
|
|
bool lock() override { return m_wallet->Lock(); }
|
|
|
|
bool unlock(const SecureString& wallet_passphrase) override { return m_wallet->Unlock(wallet_passphrase); }
|
|
|
|
bool isLocked() override { return m_wallet->IsLocked(); }
|
2017-04-17 19:56:44 -03:00
|
|
|
bool changeWalletPassphrase(const SecureString& old_wallet_passphrase,
|
|
|
|
const SecureString& new_wallet_passphrase) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return m_wallet->ChangeWalletPassphrase(old_wallet_passphrase, new_wallet_passphrase);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
void abortRescan() override { m_wallet->AbortRescan(); }
|
|
|
|
bool backupWallet(const std::string& filename) override { return m_wallet->BackupWallet(filename); }
|
|
|
|
std::string getWalletName() override { return m_wallet->GetName(); }
|
2019-06-18 15:19:13 -04:00
|
|
|
bool getNewDestination(const OutputType type, const std::string label, CTxDestination& dest) override
|
2017-04-18 14:01:23 -03:00
|
|
|
{
|
2019-06-18 15:19:13 -04:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
std::string error;
|
|
|
|
return m_wallet->GetNewDestination(type, label, dest, error);
|
2017-04-18 14:01:23 -03:00
|
|
|
}
|
2019-10-07 15:11:34 -03:00
|
|
|
bool getPubKey(const CScript& script, const CKeyID& address, CPubKey& pub_key) override
|
|
|
|
{
|
2020-02-10 23:27:59 -03:00
|
|
|
std::unique_ptr<SigningProvider> provider = m_wallet->GetSolvingProvider(script);
|
2019-10-07 15:11:34 -03:00
|
|
|
if (provider) {
|
|
|
|
return provider->GetPubKey(address, pub_key);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2020-02-13 19:09:12 -03:00
|
|
|
SigningResult signMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) override
|
|
|
|
{
|
|
|
|
return m_wallet->SignMessage(message, pkhash, str_sig);
|
|
|
|
}
|
2019-10-07 15:11:34 -03:00
|
|
|
bool isSpendable(const CTxDestination& dest) override { return m_wallet->IsMine(dest) & ISMINE_SPENDABLE; }
|
|
|
|
bool haveWatchOnly() override
|
|
|
|
{
|
|
|
|
auto spk_man = m_wallet->GetLegacyScriptPubKeyMan();
|
|
|
|
if (spk_man) {
|
|
|
|
return spk_man->HaveWatchOnly();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
2017-04-17 19:56:44 -03:00
|
|
|
bool setAddressBook(const CTxDestination& dest, const std::string& name, const std::string& purpose) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return m_wallet->SetAddressBook(dest, name, purpose);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2017-04-18 14:01:23 -03:00
|
|
|
bool delAddressBook(const CTxDestination& dest) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return m_wallet->DelAddressBook(dest);
|
2017-04-18 14:01:23 -03:00
|
|
|
}
|
2018-04-10 12:50:10 -03:00
|
|
|
bool getAddress(const CTxDestination& dest,
|
|
|
|
std::string* name,
|
|
|
|
isminetype* is_mine,
|
|
|
|
std::string* purpose) override
|
2017-04-17 19:56:44 -03:00
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2020-02-21 18:52:52 -03:00
|
|
|
auto it = m_wallet->m_address_book.find(dest);
|
2020-02-22 01:16:36 -03:00
|
|
|
if (it == m_wallet->m_address_book.end() || it->second.IsChange()) {
|
2017-04-17 19:56:44 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (name) {
|
2020-04-03 00:02:16 -03:00
|
|
|
*name = it->second.GetLabel();
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
if (is_mine) {
|
2019-10-07 15:11:34 -03:00
|
|
|
*is_mine = m_wallet->IsMine(dest);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2018-04-10 12:50:10 -03:00
|
|
|
if (purpose) {
|
|
|
|
*purpose = it->second.purpose;
|
|
|
|
}
|
2017-04-17 19:56:44 -03:00
|
|
|
return true;
|
|
|
|
}
|
2017-04-18 14:01:23 -03:00
|
|
|
std::vector<WalletAddress> getAddresses() override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2017-04-18 14:01:23 -03:00
|
|
|
std::vector<WalletAddress> result;
|
2020-02-21 18:52:52 -03:00
|
|
|
for (const auto& item : m_wallet->m_address_book) {
|
2020-02-22 01:16:36 -03:00
|
|
|
if (item.second.IsChange()) continue;
|
2020-04-03 00:02:16 -03:00
|
|
|
result.emplace_back(item.first, m_wallet->IsMine(item.first), item.second.GetLabel(), item.second.purpose);
|
2017-04-18 14:01:23 -03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-04-17 19:56:44 -03:00
|
|
|
bool addDestData(const CTxDestination& dest, const std::string& key, const std::string& value) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2019-11-02 13:20:45 -03:00
|
|
|
WalletBatch batch{m_wallet->GetDatabase()};
|
|
|
|
return m_wallet->AddDestData(batch, dest, key, value);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
bool eraseDestData(const CTxDestination& dest, const std::string& key) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2019-11-02 13:20:45 -03:00
|
|
|
WalletBatch batch{m_wallet->GetDatabase()};
|
|
|
|
return m_wallet->EraseDestData(batch, dest, key);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
std::vector<std::string> getDestValues(const std::string& prefix) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->GetDestValues(prefix);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
void lockCoin(const COutPoint& output) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->LockCoin(output);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
void unlockCoin(const COutPoint& output) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->UnlockCoin(output);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
bool isLockedCoin(const COutPoint& output) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->IsLockedCoin(output.hash, output.n);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
void listLockedCoins(std::vector<COutPoint>& outputs) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->ListLockedCoins(outputs);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-07-18 12:06:23 -04:00
|
|
|
CTransactionRef createTransaction(const std::vector<CRecipient>& recipients,
|
2017-04-17 19:56:44 -03:00
|
|
|
const CCoinControl& coin_control,
|
|
|
|
bool sign,
|
|
|
|
int& change_pos,
|
|
|
|
CAmount& fee,
|
2020-04-18 15:18:17 -04:00
|
|
|
bilingual_str& fail_reason) override
|
2017-04-17 19:56:44 -03:00
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2019-07-18 12:06:23 -04:00
|
|
|
CTransactionRef tx;
|
2019-07-09 20:07:39 -04:00
|
|
|
if (!m_wallet->CreateTransaction(recipients, tx, fee, change_pos,
|
2017-04-17 19:56:44 -03:00
|
|
|
fail_reason, coin_control, sign)) {
|
|
|
|
return {};
|
|
|
|
}
|
2019-07-18 12:06:23 -04:00
|
|
|
return tx;
|
|
|
|
}
|
2019-04-03 18:55:24 -03:00
|
|
|
void commitTransaction(CTransactionRef tx,
|
2019-07-18 12:06:23 -04:00
|
|
|
WalletValueMap value_map,
|
2019-04-03 18:55:24 -03:00
|
|
|
WalletOrderForm order_form) override
|
2019-07-18 12:06:23 -04:00
|
|
|
{
|
|
|
|
LOCK(m_wallet->cs_wallet);
|
2019-10-18 10:37:40 -03:00
|
|
|
m_wallet->CommitTransaction(std::move(tx), std::move(value_map), std::move(order_form));
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
bool transactionCanBeAbandoned(const uint256& txid) override { return m_wallet->TransactionCanBeAbandoned(txid); }
|
2017-04-17 19:56:44 -03:00
|
|
|
bool abandonTransaction(const uint256& txid) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2019-04-29 09:52:01 -04:00
|
|
|
return m_wallet->AbandonTransaction(txid);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
bool transactionCanBeBumped(const uint256& txid) override
|
|
|
|
{
|
2019-10-10 13:12:28 -03:00
|
|
|
return feebumper::TransactionCanBeBumped(*m_wallet.get(), txid);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
bool createBumpTransaction(const uint256& txid,
|
|
|
|
const CCoinControl& coin_control,
|
2020-04-18 15:18:17 -04:00
|
|
|
std::vector<bilingual_str>& errors,
|
2017-04-17 19:56:44 -03:00
|
|
|
CAmount& old_fee,
|
|
|
|
CAmount& new_fee,
|
|
|
|
CMutableTransaction& mtx) override
|
|
|
|
{
|
2020-03-10 14:40:57 -03:00
|
|
|
return feebumper::CreateRateBumpTransaction(*m_wallet.get(), txid, coin_control, errors, old_fee, new_fee, mtx) == feebumper::Result::OK;
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-10-10 13:12:28 -03:00
|
|
|
bool signBumpTransaction(CMutableTransaction& mtx) override { return feebumper::SignTransaction(*m_wallet.get(), mtx); }
|
2017-04-17 19:56:44 -03:00
|
|
|
bool commitBumpTransaction(const uint256& txid,
|
|
|
|
CMutableTransaction&& mtx,
|
2020-04-18 15:18:17 -04:00
|
|
|
std::vector<bilingual_str>& errors,
|
2017-04-17 19:56:44 -03:00
|
|
|
uint256& bumped_txid) override
|
|
|
|
{
|
2019-10-10 13:12:28 -03:00
|
|
|
return feebumper::CommitTransaction(*m_wallet.get(), txid, std::move(mtx), errors, bumped_txid) ==
|
2017-04-17 19:56:44 -03:00
|
|
|
feebumper::Result::OK;
|
|
|
|
}
|
2017-04-18 17:42:30 -03:00
|
|
|
CTransactionRef getTx(const uint256& txid) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
auto mi = m_wallet->mapWallet.find(txid);
|
|
|
|
if (mi != m_wallet->mapWallet.end()) {
|
2017-04-18 17:42:30 -03:00
|
|
|
return mi->second.tx;
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
WalletTx getWalletTx(const uint256& txid) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
auto mi = m_wallet->mapWallet.find(txid);
|
|
|
|
if (mi != m_wallet->mapWallet.end()) {
|
2019-04-29 09:52:01 -04:00
|
|
|
return MakeWalletTx(*m_wallet, mi->second);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
std::vector<WalletTx> getWalletTxs() override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2017-04-18 17:42:30 -03:00
|
|
|
std::vector<WalletTx> result;
|
2019-02-21 12:26:29 -03:00
|
|
|
result.reserve(m_wallet->mapWallet.size());
|
|
|
|
for (const auto& entry : m_wallet->mapWallet) {
|
2019-04-29 09:52:01 -04:00
|
|
|
result.emplace_back(MakeWalletTx(*m_wallet, entry.second));
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
bool tryGetTxStatus(const uint256& txid,
|
2018-04-07 04:42:02 -03:00
|
|
|
interfaces::WalletTxStatus& tx_status,
|
2018-10-23 16:02:20 -03:00
|
|
|
int& num_blocks,
|
|
|
|
int64_t& block_time) override
|
2017-04-18 17:42:30 -03:00
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
TRY_LOCK(m_wallet->cs_wallet, locked_wallet);
|
2017-04-18 17:42:30 -03:00
|
|
|
if (!locked_wallet) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
auto mi = m_wallet->mapWallet.find(txid);
|
|
|
|
if (mi == m_wallet->mapWallet.end()) {
|
2017-04-18 17:42:30 -03:00
|
|
|
return false;
|
|
|
|
}
|
2020-01-16 17:56:58 -03:00
|
|
|
num_blocks = m_wallet->GetLastBlockHeight();
|
|
|
|
block_time = -1;
|
|
|
|
CHECK_NONFATAL(m_wallet->chain().findBlock(m_wallet->GetLastBlockHash(), FoundBlock().time(block_time)));
|
2019-07-16 17:01:46 -04:00
|
|
|
tx_status = MakeWalletTxStatus(*m_wallet, mi->second);
|
2017-04-18 17:42:30 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
WalletTx getWalletTxDetails(const uint256& txid,
|
|
|
|
WalletTxStatus& tx_status,
|
|
|
|
WalletOrderForm& order_form,
|
|
|
|
bool& in_mempool,
|
2018-10-23 11:36:46 -03:00
|
|
|
int& num_blocks) override
|
2017-04-18 17:42:30 -03:00
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
auto mi = m_wallet->mapWallet.find(txid);
|
|
|
|
if (mi != m_wallet->mapWallet.end()) {
|
2019-07-09 20:07:39 -04:00
|
|
|
num_blocks = m_wallet->GetLastBlockHeight();
|
2017-04-18 17:42:30 -03:00
|
|
|
in_mempool = mi->second.InMempool();
|
|
|
|
order_form = mi->second.vOrderForm;
|
2019-07-16 17:01:46 -04:00
|
|
|
tx_status = MakeWalletTxStatus(*m_wallet, mi->second);
|
2019-04-29 09:52:01 -04:00
|
|
|
return MakeWalletTx(*m_wallet, mi->second);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
2017-12-05 17:57:12 -03:00
|
|
|
TransactionError fillPSBT(int sighash_type,
|
|
|
|
bool sign,
|
|
|
|
bool bip32derivs,
|
|
|
|
PartiallySignedTransaction& psbtx,
|
2020-01-31 23:12:14 -03:00
|
|
|
bool& complete,
|
|
|
|
size_t* n_signed) override
|
2019-09-23 15:25:10 -03:00
|
|
|
{
|
2020-01-31 23:12:14 -03:00
|
|
|
return m_wallet->FillPSBT(psbtx, complete, sighash_type, sign, bip32derivs, n_signed);
|
2019-09-23 15:25:10 -03:00
|
|
|
}
|
2017-04-17 19:56:44 -03:00
|
|
|
WalletBalances getBalances() override
|
|
|
|
{
|
2019-03-11 17:12:58 -03:00
|
|
|
const auto bal = m_wallet->GetBalance();
|
2017-04-17 19:56:44 -03:00
|
|
|
WalletBalances result;
|
2019-03-11 17:12:58 -03:00
|
|
|
result.balance = bal.m_mine_trusted;
|
|
|
|
result.unconfirmed_balance = bal.m_mine_untrusted_pending;
|
|
|
|
result.immature_balance = bal.m_mine_immature;
|
2019-10-07 15:11:34 -03:00
|
|
|
result.have_watch_only = haveWatchOnly();
|
2017-04-17 19:56:44 -03:00
|
|
|
if (result.have_watch_only) {
|
2019-03-11 17:12:58 -03:00
|
|
|
result.watch_only_balance = bal.m_watchonly_trusted;
|
|
|
|
result.unconfirmed_watch_only_balance = bal.m_watchonly_untrusted_pending;
|
|
|
|
result.immature_watch_only_balance = bal.m_watchonly_immature;
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2020-01-23 19:31:16 -03:00
|
|
|
bool tryGetBalances(WalletBalances& balances, uint256& block_hash) override
|
2017-04-17 19:56:44 -03:00
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
TRY_LOCK(m_wallet->cs_wallet, locked_wallet);
|
2017-04-17 19:56:44 -03:00
|
|
|
if (!locked_wallet) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-01-23 19:31:16 -03:00
|
|
|
block_hash = m_wallet->GetLastBlockHash();
|
2017-04-17 19:56:44 -03:00
|
|
|
balances = getBalances();
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-11 17:12:58 -03:00
|
|
|
CAmount getBalance() override { return m_wallet->GetBalance().m_mine_trusted; }
|
2017-04-17 19:56:44 -03:00
|
|
|
CAmount getAvailableBalance(const CCoinControl& coin_control) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return m_wallet->GetAvailableBalance(&coin_control);
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2017-04-18 17:42:30 -03:00
|
|
|
isminetype txinIsMine(const CTxIn& txin) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->IsMine(txin);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
isminetype txoutIsMine(const CTxOut& txout) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->IsMine(txout);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
CAmount getDebit(const CTxIn& txin, isminefilter filter) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->GetDebit(txin, filter);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
|
|
|
CAmount getCredit(const CTxOut& txout, isminefilter filter) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
|
|
|
return m_wallet->GetCredit(txout, filter);
|
2017-04-18 17:42:30 -03:00
|
|
|
}
|
2017-04-17 20:46:08 -03:00
|
|
|
CoinsList listCoins() override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2017-04-17 20:46:08 -03:00
|
|
|
CoinsList result;
|
2019-07-16 17:01:46 -04:00
|
|
|
for (const auto& entry : m_wallet->ListCoins()) {
|
2017-04-17 20:46:08 -03:00
|
|
|
auto& group = result[entry.first];
|
|
|
|
for (const auto& coin : entry.second) {
|
2017-07-31 15:30:21 -04:00
|
|
|
group.emplace_back(COutPoint(coin.tx->GetHash(), coin.i),
|
2019-04-29 09:52:01 -04:00
|
|
|
MakeWalletTxOut(*m_wallet, *coin.tx, coin.i, coin.nDepth));
|
2017-04-17 20:46:08 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
std::vector<WalletTxOut> getCoins(const std::vector<COutPoint>& outputs) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
LOCK(m_wallet->cs_wallet);
|
2017-04-17 20:46:08 -03:00
|
|
|
std::vector<WalletTxOut> result;
|
|
|
|
result.reserve(outputs.size());
|
|
|
|
for (const auto& output : outputs) {
|
|
|
|
result.emplace_back();
|
2019-02-21 12:26:29 -03:00
|
|
|
auto it = m_wallet->mapWallet.find(output.hash);
|
|
|
|
if (it != m_wallet->mapWallet.end()) {
|
2019-04-29 09:52:01 -04:00
|
|
|
int depth = it->second.GetDepthInMainChain();
|
2017-04-17 20:46:08 -03:00
|
|
|
if (depth >= 0) {
|
2019-04-29 09:52:01 -04:00
|
|
|
result.back() = MakeWalletTxOut(*m_wallet, it->second, output.n, depth);
|
2017-04-17 20:46:08 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
CAmount getRequiredFee(unsigned int tx_bytes) override { return GetRequiredFee(*m_wallet, tx_bytes); }
|
2018-04-07 13:12:46 -03:00
|
|
|
CAmount getMinimumFee(unsigned int tx_bytes,
|
|
|
|
const CCoinControl& coin_control,
|
|
|
|
int* returned_target,
|
|
|
|
FeeReason* reason) override
|
|
|
|
{
|
|
|
|
FeeCalculation fee_calc;
|
|
|
|
CAmount result;
|
2017-07-28 21:40:29 -04:00
|
|
|
result = GetMinimumFee(*m_wallet, tx_bytes, coin_control, &fee_calc);
|
2018-04-07 13:12:46 -03:00
|
|
|
if (returned_target) *returned_target = fee_calc.returnedTarget;
|
|
|
|
if (reason) *reason = fee_calc.reason;
|
|
|
|
return result;
|
|
|
|
}
|
2019-02-21 12:26:29 -03:00
|
|
|
unsigned int getConfirmTarget() override { return m_wallet->m_confirm_target; }
|
|
|
|
bool hdEnabled() override { return m_wallet->IsHDEnabled(); }
|
2017-12-05 17:57:12 -03:00
|
|
|
bool canGetAddresses() override { return m_wallet->CanGetAddresses(); }
|
|
|
|
bool privateKeysDisabled() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS); }
|
2019-02-21 12:26:29 -03:00
|
|
|
OutputType getDefaultAddressType() override { return m_wallet->m_default_address_type; }
|
2019-02-20 15:45:16 -03:00
|
|
|
CAmount getDefaultMaxTxFee() override { return m_wallet->m_default_max_tx_fee; }
|
2019-01-17 14:37:46 -03:00
|
|
|
void remove() override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
RemoveWallet(m_wallet);
|
2019-01-17 14:37:46 -03:00
|
|
|
}
|
2019-08-14 14:25:53 -04:00
|
|
|
bool isLegacy() override { return m_wallet->IsLegacy(); }
|
2018-06-05 06:17:28 -04:00
|
|
|
std::unique_ptr<Handler> handleUnload(UnloadFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->NotifyUnload.connect(fn));
|
2018-06-05 06:17:28 -04:00
|
|
|
}
|
2017-04-17 16:10:47 -03:00
|
|
|
std::unique_ptr<Handler> handleShowProgress(ShowProgressFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->ShowProgress.connect(fn));
|
2017-04-17 16:10:47 -03:00
|
|
|
}
|
2017-04-17 19:56:44 -03:00
|
|
|
std::unique_ptr<Handler> handleStatusChanged(StatusChangedFn fn) override
|
|
|
|
{
|
2019-06-06 17:58:21 -04:00
|
|
|
return MakeHandler(m_wallet->NotifyStatusChanged.connect([fn](CWallet*) { fn(); }));
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
std::unique_ptr<Handler> handleAddressBookChanged(AddressBookChangedFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->NotifyAddressBookChanged.connect(
|
2017-04-17 19:56:44 -03:00
|
|
|
[fn](CWallet*, const CTxDestination& address, const std::string& label, bool is_mine,
|
|
|
|
const std::string& purpose, ChangeType status) { fn(address, label, is_mine, purpose, status); }));
|
|
|
|
}
|
|
|
|
std::unique_ptr<Handler> handleTransactionChanged(TransactionChangedFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->NotifyTransactionChanged.connect(
|
2018-04-10 10:21:41 -03:00
|
|
|
[fn](CWallet*, const uint256& txid, ChangeType status) { fn(txid, status); }));
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
|
|
|
std::unique_ptr<Handler> handleWatchOnlyChanged(WatchOnlyChangedFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->NotifyWatchonlyChanged.connect(fn));
|
2017-04-17 19:56:44 -03:00
|
|
|
}
|
2019-01-18 19:05:32 -03:00
|
|
|
std::unique_ptr<Handler> handleCanGetAddressesChanged(CanGetAddressesChangedFn fn) override
|
|
|
|
{
|
2019-02-21 12:26:29 -03:00
|
|
|
return MakeHandler(m_wallet->NotifyCanGetAddressesChanged.connect(fn));
|
2019-01-18 19:05:32 -03:00
|
|
|
}
|
2019-12-18 19:46:53 -03:00
|
|
|
CWallet* wallet() override { return m_wallet.get(); }
|
2017-04-17 16:10:47 -03:00
|
|
|
|
2019-02-21 12:26:29 -03:00
|
|
|
std::shared_ptr<CWallet> m_wallet;
|
2017-04-17 16:10:47 -03:00
|
|
|
};
|
|
|
|
|
2017-05-30 15:55:17 -04:00
|
|
|
class WalletClientImpl : public ChainClient
|
|
|
|
{
|
|
|
|
public:
|
2020-05-11 11:40:21 -04:00
|
|
|
WalletClientImpl(Chain& chain, ArgsManager& args, std::vector<std::string> wallet_filenames)
|
2020-05-28 02:13:19 -04:00
|
|
|
: m_wallet_filenames(std::move(wallet_filenames))
|
2017-05-30 15:55:17 -04:00
|
|
|
{
|
2020-05-28 02:13:19 -04:00
|
|
|
m_context.chain = &chain;
|
2020-05-11 11:40:21 -04:00
|
|
|
m_context.args = &args;
|
2017-05-30 15:55:17 -04:00
|
|
|
}
|
2019-09-17 20:05:26 -03:00
|
|
|
void registerRpcs() override
|
|
|
|
{
|
2020-05-28 02:13:19 -04:00
|
|
|
for (const CRPCCommand& command : GetWalletRPCCommands()) {
|
2020-05-28 02:13:19 -04:00
|
|
|
m_rpc_commands.emplace_back(command.category, command.name, [this, &command](const JSONRPCRequest& request, UniValue& result, bool last_handler) {
|
|
|
|
return command.actor({request, m_context}, result, last_handler);
|
|
|
|
}, command.argNames, command.unique_id);
|
|
|
|
m_rpc_handlers.emplace_back(m_context.chain->handleRpc(m_rpc_commands.back()));
|
2020-05-28 02:13:19 -04:00
|
|
|
}
|
2019-09-17 20:05:26 -03:00
|
|
|
}
|
2020-05-28 02:13:19 -04:00
|
|
|
bool verify() override { return VerifyWallets(*m_context.chain, m_wallet_filenames); }
|
|
|
|
bool load() override { return LoadWallets(*m_context.chain, m_wallet_filenames); }
|
2020-05-11 11:40:21 -04:00
|
|
|
void start(CScheduler& scheduler) override { return StartWallets(scheduler, *Assert(m_context.args)); }
|
2017-09-28 15:13:29 -03:00
|
|
|
void flush() override { return FlushWallets(); }
|
|
|
|
void stop() override { return StopWallets(); }
|
2017-12-05 17:57:12 -03:00
|
|
|
void setMockTime(int64_t time) override { return SetMockTime(time); }
|
|
|
|
std::vector<std::unique_ptr<Wallet>> getWallets() override
|
|
|
|
{
|
|
|
|
std::vector<std::unique_ptr<Wallet>> wallets;
|
|
|
|
for (const auto& wallet : GetWallets()) {
|
|
|
|
wallets.emplace_back(MakeWallet(wallet));
|
|
|
|
}
|
|
|
|
return wallets;
|
|
|
|
}
|
2017-09-28 15:13:29 -03:00
|
|
|
~WalletClientImpl() override { UnloadWallets(); }
|
2017-05-30 15:55:17 -04:00
|
|
|
|
2020-05-28 02:13:19 -04:00
|
|
|
WalletContext m_context;
|
2020-05-11 11:40:21 -04:00
|
|
|
const std::vector<std::string> m_wallet_filenames;
|
2017-07-31 11:46:13 -04:00
|
|
|
std::vector<std::unique_ptr<Handler>> m_rpc_handlers;
|
2020-05-28 02:13:19 -04:00
|
|
|
std::list<CRPCCommand> m_rpc_commands;
|
2017-05-30 15:55:17 -04:00
|
|
|
};
|
|
|
|
|
2017-04-17 16:10:47 -03:00
|
|
|
} // namespace
|
|
|
|
|
2019-01-22 12:09:57 -03:00
|
|
|
std::unique_ptr<Wallet> MakeWallet(const std::shared_ptr<CWallet>& wallet) { return wallet ? MakeUnique<WalletImpl>(wallet) : nullptr; }
|
2017-04-17 16:10:47 -03:00
|
|
|
|
2020-05-11 11:40:21 -04:00
|
|
|
std::unique_ptr<ChainClient> MakeWalletClient(Chain& chain, ArgsManager& args, std::vector<std::string> wallet_filenames)
|
2017-05-30 15:55:17 -04:00
|
|
|
{
|
2020-05-11 11:40:21 -04:00
|
|
|
return MakeUnique<WalletClientImpl>(chain, args, std::move(wallet_filenames));
|
2017-05-30 15:55:17 -04:00
|
|
|
}
|
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
} // namespace interfaces
|