diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-08-20 02:54:54 +0800 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2018-09-17 09:56:49 +0800 |
commit | 2148c36b6ec02fcf10d6d3b76e50b690ee93bdfd (patch) | |
tree | c3ec637a5285aefb72d08de0e153b7335b72c4e3 /test/functional/feature_block.py | |
parent | 3832c25f176753b7ddb724c26ee7543fb1e1819e (diff) |
tests: Make it possible to run functional tests on Windows
Diffstat (limited to 'test/functional/feature_block.py')
-rwxr-xr-x | test/functional/feature_block.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_block.py b/test/functional/feature_block.py index 6e36ea5601..8218abf455 100755 --- a/test/functional/feature_block.py +++ b/test/functional/feature_block.py @@ -827,7 +827,7 @@ class FullBlockTest(BitcoinTestFramework): tx.vin.append(CTxIn(COutPoint(b64a.vtx[1].sha256, 0))) b64a = self.update_block("64a", [tx]) assert_equal(len(b64a.serialize()), MAX_BLOCK_BASE_SIZE + 8) - self.sync_blocks([b64a], success=False, reject_reason='non-canonical ReadCompactSize(): iostream error') + self.sync_blocks([b64a], success=False, reject_reason='non-canonical ReadCompactSize():') # bitcoind doesn't disconnect us for sending a bloated block, but if we subsequently # resend the header message, it won't send us the getdata message again. Just |