mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
29 lines
801 B
C++
29 lines
801 B
C++
// Copyright (c) 2019-2021 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 <util/translation.h>
|
|
#include <wallet/wallet.h>
|
|
#endif
|
|
|
|
using wallet::CWallet;
|
|
|
|
const std::string ADDRESS_BCRT1_UNSPENDABLE = "bcrt1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq3xueyj";
|
|
|
|
#ifdef ENABLE_WALLET
|
|
std::string getnewaddress(CWallet& w)
|
|
{
|
|
constexpr auto output_type = OutputType::BECH32;
|
|
auto op_dest = w.GetNewDestination(output_type, "");
|
|
assert(op_dest.HasRes());
|
|
|
|
return EncodeDestination(op_dest.GetObj());
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|