diff options
| author | Johnson Lau <[email protected]> | 2017-07-30 17:32:39 +0800 |
|---|---|---|
| committer | Johnson Lau <[email protected]> | 2017-08-30 18:32:17 +0800 |
| commit | e912118786f867d6821e2c1a2e4e1d4937fefd85 (patch) | |
| tree | eb5c2d19e238f1ceb59ba19ff6c86868197e1ecb /src/test/transaction_tests.cpp | |
| parent | Merge #11150: [tests] Add getmininginfo test (diff) | |
| download | discoin-e912118786f867d6821e2c1a2e4e1d4937fefd85.tar.xz discoin-e912118786f867d6821e2c1a2e4e1d4937fefd85.zip | |
[Refactor] Combine scriptPubKey and amount as CTxOut in CScriptCheck
Diffstat (limited to 'src/test/transaction_tests.cpp')
| -rw-r--r-- | src/test/transaction_tests.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index 6654634bf..cb6ab7cdb 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -480,8 +480,7 @@ BOOST_AUTO_TEST_CASE(test_big_witness_transaction) { for(uint32_t i = 0; i < mtx.vin.size(); i++) { std::vector<CScriptCheck> vChecks; - const CTxOut& output = coins[tx.vin[i].prevout.n].out; - CScriptCheck check(output.scriptPubKey, output.nValue, tx, i, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_WITNESS, false, &txdata); + CScriptCheck check(coins[tx.vin[i].prevout.n].out, tx, i, SCRIPT_VERIFY_P2SH | SCRIPT_VERIFY_WITNESS, false, &txdata); vChecks.push_back(CScriptCheck()); check.swap(vChecks.back()); control.Add(vChecks); |