diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-17 20:37:47 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-17 20:37:47 +0200 |
commit | 0a83c0fcef87e34e3e0f05580fa2c1ad9208c367 (patch) | |
tree | c6c88f0b896916c5662d408c85819aa4bbfcca00 /src/test/DoS_tests.cpp | |
parent | c23617fef3086e0d11ccfa288afa1c1d177bcdc8 (diff) |
Fix tests after recent refactors
Diffstat (limited to 'src/test/DoS_tests.cpp')
-rw-r--r-- | src/test/DoS_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 0b89414048..c0b00102a0 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -168,7 +168,7 @@ BOOST_AUTO_TEST_CASE(DoS_mapOrphans) tx.vout[0].nValue = 1*CENT; tx.vout[0].scriptPubKey.SetBitcoinAddress(key.GetPubKey()); - CDataStream ds; + CDataStream ds(SER_DISK, CLIENT_VERSION); ds << tx; AddOrphanTx(ds); } @@ -187,7 +187,7 @@ BOOST_AUTO_TEST_CASE(DoS_mapOrphans) tx.vout[0].scriptPubKey.SetBitcoinAddress(key.GetPubKey()); SignSignature(keystore, txPrev, tx, 0); - CDataStream ds; + CDataStream ds(SER_DISK, CLIENT_VERSION); ds << tx; AddOrphanTx(ds); } |