2019-04-10 14:57:19 -04:00
|
|
|
// Copyright (c) 2019 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2019-11-25 13:57:47 +01:00
|
|
|
#include <test/util/wallet.h>
|
2019-04-10 14:57:19 -04:00
|
|
|
|
|
|
|
#include <key_io.h>
|
|
|
|
#include <outputtype.h>
|
|
|
|
#include <script/standard.h>
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
#include <wallet/wallet.h>
|
|
|
|
#endif
|
|
|
|
|
2019-04-10 15:06:31 -04:00
|
|
|
const std::string ADDRESS_BCRT1_UNSPENDABLE = "bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj";
|
|
|
|
|
2019-04-10 14:57:19 -04:00
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
std::string getnewaddress(CWallet& w)
|
|
|
|
{
|
|
|
|
constexpr auto output_type = OutputType::BECH32;
|
2019-06-18 15:19:13 -04:00
|
|
|
CTxDestination dest;
|
|
|
|
std::string error;
|
|
|
|
if (!w.GetNewDestination(output_type, "", dest, error)) assert(false);
|
2019-04-10 14:57:19 -04:00
|
|
|
|
|
|
|
return EncodeDestination(dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
void importaddress(CWallet& wallet, const std::string& address)
|
|
|
|
{
|
2019-10-07 14:11:34 -04:00
|
|
|
auto spk_man = wallet.GetLegacyScriptPubKeyMan();
|
2019-10-07 14:11:34 -04:00
|
|
|
LOCK2(wallet.cs_wallet, spk_man->cs_KeyStore);
|
2019-04-10 14:57:19 -04:00
|
|
|
const auto dest = DecodeDestination(address);
|
|
|
|
assert(IsValidDestination(dest));
|
|
|
|
const auto script = GetScriptForDestination(dest);
|
|
|
|
wallet.MarkDirty();
|
2019-10-07 14:11:34 -04:00
|
|
|
assert(!spk_man->HaveWatchOnly(script));
|
|
|
|
if (!spk_man->AddWatchOnly(script, 0 /* nCreateTime */)) assert(false);
|
2019-04-10 14:57:19 -04:00
|
|
|
wallet.SetAddressBook(dest, /* label */ "", "receive");
|
|
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|