mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-29 20:47:31 -03:00
fadc08ad94
This commit only affects locking behavior and doesn't have other changes.
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
// 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.
|
|
|
|
#include <test/util/wallet.h>
|
|
|
|
#include <key_io.h>
|
|
#include <outputtype.h>
|
|
#include <script/standard.h>
|
|
#ifdef ENABLE_WALLET
|
|
#include <wallet/wallet.h>
|
|
#endif
|
|
|
|
const std::string ADDRESS_BCRT1_UNSPENDABLE = "bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj";
|
|
|
|
#ifdef ENABLE_WALLET
|
|
std::string getnewaddress(CWallet& w)
|
|
{
|
|
constexpr auto output_type = OutputType::BECH32;
|
|
CTxDestination dest;
|
|
std::string error;
|
|
if (!w.GetNewDestination(output_type, "", dest, error)) assert(false);
|
|
|
|
return EncodeDestination(dest);
|
|
}
|
|
|
|
void importaddress(CWallet& wallet, const std::string& address)
|
|
{
|
|
auto spk_man = wallet.GetLegacyScriptPubKeyMan();
|
|
LOCK2(wallet.cs_wallet, spk_man->cs_KeyStore);
|
|
const auto dest = DecodeDestination(address);
|
|
assert(IsValidDestination(dest));
|
|
const auto script = GetScriptForDestination(dest);
|
|
wallet.MarkDirty();
|
|
assert(!spk_man->HaveWatchOnly(script));
|
|
if (!spk_man->AddWatchOnly(script, 0 /* nCreateTime */)) assert(false);
|
|
wallet.SetAddressBook(dest, /* label */ "", "receive");
|
|
}
|
|
#endif // ENABLE_WALLET
|