mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-12 14:22:43 +02:00
Send the correct error code in reject messages
This commit is contained in:
@ -398,7 +398,7 @@ class FullBlockTest(ComparisonTestFramework):
|
||||
|
||||
# Extend the b26 chain to make sure bitcoind isn't accepting b26
|
||||
b27 = block(27, spend=out[7])
|
||||
yield rejected(RejectResult(0, b'bad-prevblk'))
|
||||
yield rejected(False)
|
||||
|
||||
# Now try a too-large-coinbase script
|
||||
tip(15)
|
||||
@ -410,7 +410,7 @@ class FullBlockTest(ComparisonTestFramework):
|
||||
|
||||
# Extend the b28 chain to make sure bitcoind isn't accepting b28
|
||||
b29 = block(29, spend=out[7])
|
||||
yield rejected(RejectResult(0, b'bad-prevblk'))
|
||||
yield rejected(False)
|
||||
|
||||
# b30 has a max-sized coinbase scriptSig.
|
||||
tip(23)
|
||||
|
Reference in New Issue
Block a user