Lines Matching refs:tx3

138     CMutableTransaction tx3 = CMutableTransaction();  in BOOST_AUTO_TEST_CASE()  local
139 tx3.vout.resize(1); in BOOST_AUTO_TEST_CASE()
140 tx3.vout[0].scriptPubKey = CScript() << OP_11 << OP_EQUAL; in BOOST_AUTO_TEST_CASE()
141 tx3.vout[0].nValue = 5 * COIN; in BOOST_AUTO_TEST_CASE()
142 pool.addUnchecked(tx3.GetHash(), entry.Fee(0LL).Priority(100.0).FromTx(tx3)); in BOOST_AUTO_TEST_CASE()
163 sortedOrder[0] = tx3.GetHash().ToString(); // 0 in BOOST_AUTO_TEST_CASE()
311 if (tx3.GetHash() < tx6.GetHash()) { in BOOST_AUTO_TEST_CASE()
313 sortedOrder.push_back(tx3.GetHash().ToString()); in BOOST_AUTO_TEST_CASE()
315 sortedOrder.push_back(tx3.GetHash().ToString()); in BOOST_AUTO_TEST_CASE()
343 CMutableTransaction tx3 = CMutableTransaction(); in BOOST_AUTO_TEST_CASE() local
344 tx3.vout.resize(1); in BOOST_AUTO_TEST_CASE()
345 tx3.vout[0].scriptPubKey = CScript() << OP_11 << OP_EQUAL; in BOOST_AUTO_TEST_CASE()
346 tx3.vout[0].nValue = 5 * COIN; in BOOST_AUTO_TEST_CASE()
347 pool.addUnchecked(tx3.GetHash(), entry.Fee(0LL).Priority(100.0).FromTx(tx3)); in BOOST_AUTO_TEST_CASE()
378 sortedOrder[4] = tx3.GetHash().ToString(); // 0 in BOOST_AUTO_TEST_CASE()
457 CMutableTransaction tx3 = CMutableTransaction(); in BOOST_AUTO_TEST_CASE() local
458 tx3.vin.resize(1); in BOOST_AUTO_TEST_CASE()
459 tx3.vin[0].prevout = COutPoint(tx2.GetHash(), 0); in BOOST_AUTO_TEST_CASE()
460 tx3.vin[0].scriptSig = CScript() << OP_2; in BOOST_AUTO_TEST_CASE()
461 tx3.vout.resize(1); in BOOST_AUTO_TEST_CASE()
462 tx3.vout[0].scriptPubKey = CScript() << OP_3 << OP_EQUAL; in BOOST_AUTO_TEST_CASE()
463 tx3.vout[0].nValue = 10 * COIN; in BOOST_AUTO_TEST_CASE()
464 pool.addUnchecked(tx3.GetHash(), entry.Fee(20000LL).FromTx(tx3, &pool)); in BOOST_AUTO_TEST_CASE()
469 BOOST_CHECK(pool.exists(tx3.GetHash())); in BOOST_AUTO_TEST_CASE()
474 BOOST_CHECK(!pool.exists(tx3.GetHash())); in BOOST_AUTO_TEST_CASE()
476 …CFeeRate maxFeeRateRemoved(25000, GetVirtualTransactionSize(tx3) + GetVirtualTransactionSize(tx2)); in BOOST_AUTO_TEST_CASE()