diff options
| author | practicalswift <[email protected]> | 2018-09-23 20:44:15 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-09-23 22:03:38 +0200 |
| commit | ba923e32a0c03fcbb6ffe317580fd1d04669ce71 (patch) | |
| tree | b05d9546234ebd97e7de9a1aa47097d53dccff1c | |
| parent | Merge #14287: tests: Use MakeUnique to construct objects owned by unique_ptrs (diff) | |
| download | discoin-ba923e32a0c03fcbb6ffe317580fd1d04669ce71.tar.xz discoin-ba923e32a0c03fcbb6ffe317580fd1d04669ce71.zip | |
test: Fix broken segwit test
| -rwxr-xr-x | test/functional/p2p_segwit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index de12ab1ed..58bfd1c94 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -771,8 +771,8 @@ class SegWitTest(BitcoinTestFramework): # segwit-aware would also reject this for failing CLEANSTACK. test_transaction_acceptance(self.nodes[0], self.test_node, spend_tx, with_witness=False, accepted=False) - # Try to put the witness script in the script_sig, should also fail. - spend_tx.vin[0].script_sig = CScript([p2wsh_pubkey, b'a']) + # Try to put the witness script in the scriptSig, should also fail. + spend_tx.vin[0].scriptSig = CScript([p2wsh_pubkey, b'a']) spend_tx.rehash() test_transaction_acceptance(self.nodes[0], self.test_node, spend_tx, with_witness=False, accepted=False) |