Bitcoin Core 22.99.0
P2P Digital Currency
spend_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2021 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <consensus/amount.h>
6#include <policy/fees.h>
7#include <validation.h>
9#include <wallet/spend.h>
10#include <wallet/test/util.h>
12
13#include <boost/test/unit_test.hpp>
14
16
18{
19 CreateAndProcessBlock({}, GetScriptForRawPubKey(coinbaseKey.GetPubKey()));
20 auto wallet = CreateSyncedWallet(*m_node.chain, m_node.chainman->ActiveChain(), coinbaseKey);
21
22 // Check that a subtract-from-recipient transaction slightly less than the
23 // coinbase input amount does not create a change output (because it would
24 // be uneconomical to add and spend the output), and make sure it pays the
25 // leftover input amount which would have been change to the recipient
26 // instead of the miner.
27 auto check_tx = [&wallet](CAmount leftover_input_amount) {
28 CRecipient recipient{GetScriptForRawPubKey({}), 50 * COIN - leftover_input_amount, true /* subtract fee */};
30 CAmount fee;
31 int change_pos = -1;
33 CCoinControl coin_control;
34 coin_control.m_feerate.emplace(10000);
35 coin_control.fOverrideFeeRate = true;
36 // We need to use a change type with high cost of change so that the leftover amount will be dropped to fee instead of added as a change output
37 coin_control.m_change_type = OutputType::LEGACY;
38 FeeCalculation fee_calc;
39 BOOST_CHECK(CreateTransaction(*wallet, {recipient}, tx, fee, change_pos, error, coin_control, fee_calc));
40 BOOST_CHECK_EQUAL(tx->vout.size(), 1);
41 BOOST_CHECK_EQUAL(tx->vout[0].nValue, recipient.nAmount + leftover_input_amount - fee);
42 BOOST_CHECK_GT(fee, 0);
43 return fee;
44 };
45
46 // Send full input amount to recipient, check that only nonzero fee is
47 // subtracted (to_reduce == fee).
48 const CAmount fee{check_tx(0)};
49
50 // Send slightly less than full input amount to recipient, check leftover
51 // input amount is paid to recipient not the miner (to_reduce == fee - 123)
52 BOOST_CHECK_EQUAL(fee, check_tx(123));
53
54 // Send full input minus fee amount to recipient, check leftover input
55 // amount is paid to recipient not the miner (to_reduce == 0)
56 BOOST_CHECK_EQUAL(fee, check_tx(fee));
57
58 // Send full input minus more than the fee amount to recipient, check
59 // leftover input amount is paid to recipient not the miner (to_reduce ==
60 // -123). This overpays the recipient instead of overpaying the miner more
61 // than double the necessary fee.
62 BOOST_CHECK_EQUAL(fee, check_tx(fee + 123));
63}
64
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
static constexpr CAmount COIN
The amount of satoshis in one BTC.
Definition: amount.h:15
NodeContext m_node
Definition: bitcoin-gui.cpp:36
Coin Control Features.
Definition: coincontrol.h:29
std::optional< OutputType > m_change_type
Override the default change type if set, ignored if destChange is set.
Definition: coincontrol.h:34
std::optional< CFeeRate > m_feerate
Override the wallet's m_pay_tx_fee if set.
Definition: coincontrol.h:46
bool fOverrideFeeRate
Override automatic min/max checks on fee, m_feerate must be set if true.
Definition: coincontrol.h:44
BOOST_AUTO_TEST_SUITE_END()
#define BOOST_FIXTURE_TEST_SUITE(a, b)
Definition: object.cpp:14
#define BOOST_CHECK_EQUAL(v1, v2)
Definition: object.cpp:18
#define BOOST_CHECK(expr)
Definition: object.cpp:17
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:386
bool CreateTransaction(CWallet &wallet, const std::vector< CRecipient > &vecSend, CTransactionRef &tx, CAmount &nFeeRet, int &nChangePosInOut, bilingual_str &error, const CCoinControl &coin_control, FeeCalculation &fee_calc_out, bool sign)
Create a new transaction paying the recipients with a set of coins selected by SelectCoins(); Also cr...
Definition: spend.cpp:941
BOOST_FIXTURE_TEST_CASE(SubtractFee, TestChain100Setup)
Definition: spend_tests.cpp:17
CScript GetScriptForRawPubKey(const CPubKey &pubKey)
Generate a P2PK script for the given pubkey.
Definition: standard.cpp:315
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:47
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:50
Testing fixture that pre-creates a 100-block REGTEST-mode block chain.
Definition: setup_common.h:116
Testing setup and teardown for wallet.
Bilingual messages:
Definition: translation.h:16
bool error(const char *fmt, const Args &... args)
Definition: system.h:49
std::unique_ptr< CWallet > CreateSyncedWallet(interfaces::Chain &chain, CChain &cchain, const CKey &key)
Definition: util.cpp:18