Browse Source

Preserve tx version=1 for certain tests

Without this change, the tests would be affected by default
tx version increases.
0.14
BtcDrak 8 years ago
parent
commit
dab207e4e6
No known key found for this signature in database
GPG Key ID: C26B028A44F111A0
  1. 6
      src/test/hash_tests.cpp
  2. 1
      src/test/txvalidationcache_tests.cpp

6
src/test/hash_tests.cpp

@ -124,7 +124,11 @@ BOOST_AUTO_TEST_CASE(siphash) @@ -124,7 +124,11 @@ BOOST_AUTO_TEST_CASE(siphash)
}
CHashWriter ss(SER_DISK, CLIENT_VERSION);
ss << CTransaction();
CMutableTransaction tx;
// Note these tests were originally written with tx.nVersion=1
// and the test would be affected by default tx version bumps if not fixed.
tx.nVersion = 1;
ss << tx;
BOOST_CHECK_EQUAL(SipHashUint256(1, 2, ss.GetHash()), 0x79751e980c2a0a35ULL);
}

1
src/test/txvalidationcache_tests.cpp

@ -39,6 +39,7 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup) @@ -39,6 +39,7 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup)
spends.resize(2);
for (int i = 0; i < 2; i++)
{
spends[i].nVersion = 1;
spends[i].vin.resize(1);
spends[i].vin[0].prevout.hash = coinbaseTxns[0].GetHash();
spends[i].vin[0].prevout.n = 0;

Loading…
Cancel
Save