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.
|
|
|
|
|
|
|
|
#include <test/util.h>
|
|
|
|
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <consensus/merkle.h>
|
|
|
|
#include <key_io.h>
|
|
|
|
#include <miner.h>
|
|
|
|
#include <outputtype.h>
|
|
|
|
#include <pow.h>
|
|
|
|
#include <script/standard.h>
|
|
|
|
#include <validation.h>
|
|
|
|
#include <validationinterface.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)
|
|
|
|
{
|
|
|
|
LOCK(wallet.cs_wallet);
|
|
|
|
const auto dest = DecodeDestination(address);
|
|
|
|
assert(IsValidDestination(dest));
|
|
|
|
const auto script = GetScriptForDestination(dest);
|
|
|
|
wallet.MarkDirty();
|
|
|
|
assert(!wallet.HaveWatchOnly(script));
|
|
|
|
if (!wallet.AddWatchOnly(script, 0 /* nCreateTime */)) assert(false);
|
|
|
|
wallet.SetAddressBook(dest, /* label */ "", "receive");
|
|
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
|
|
|
CTxIn generatetoaddress(const std::string& address)
|
|
|
|
{
|
|
|
|
const auto dest = DecodeDestination(address);
|
|
|
|
assert(IsValidDestination(dest));
|
|
|
|
const auto coinbase_script = GetScriptForDestination(dest);
|
|
|
|
|
|
|
|
return MineBlock(coinbase_script);
|
|
|
|
}
|
|
|
|
|
|
|
|
CTxIn MineBlock(const CScript& coinbase_scriptPubKey)
|
|
|
|
{
|
|
|
|
auto block = PrepareBlock(coinbase_scriptPubKey);
|
|
|
|
|
|
|
|
while (!CheckProofOfWork(block->GetHash(), block->nBits, Params().GetConsensus())) {
|
|
|
|
++block->nNonce;
|
|
|
|
assert(block->nNonce);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool processed{ProcessNewBlock(Params(), block, true, nullptr)};
|
|
|
|
assert(processed);
|
|
|
|
|
|
|
|
return CTxIn{block->vtx[0]->GetHash(), 0};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<CBlock> PrepareBlock(const CScript& coinbase_scriptPubKey)
|
|
|
|
{
|
|
|
|
auto block = std::make_shared<CBlock>(
|
|
|
|
BlockAssembler{Params()}
|
|
|
|
.CreateNewBlock(coinbase_scriptPubKey)
|
|
|
|
->block);
|
|
|
|
|
2019-04-19 13:19:20 -04:00
|
|
|
LOCK(cs_main);
|
2019-03-27 12:14:25 -03:00
|
|
|
block->nTime = ::ChainActive().Tip()->GetMedianTimePast() + 1;
|
2019-04-10 14:57:19 -04:00
|
|
|
block->hashMerkleRoot = BlockMerkleRoot(*block);
|
|
|
|
|
|
|
|
return block;
|
|
|
|
}
|