diff options
author | Peter Todd <pete@petertodd.org> | 2014-03-12 20:07:51 -0400 |
---|---|---|
committer | Peter Todd <pete@petertodd.org> | 2014-03-12 20:14:01 -0400 |
commit | b41e5947735097d12eb795f2d1dc9c79ff391aba (patch) | |
tree | 4572d19728ecae595062d871d31c1f39275f6f85 /src/test/data/script_invalid.json | |
parent | ca0b8acbf38a02f39e313a1c633d577f9bf7d983 (diff) |
Fix script test handling of empty scripts
Previously an empty script would evaluate to OP_0
Diffstat (limited to 'src/test/data/script_invalid.json')
-rw-r--r-- | src/test/data/script_invalid.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/data/script_invalid.json b/src/test/data/script_invalid.json index 8cb365a46f..609c89be06 100644 --- a/src/test/data/script_invalid.json +++ b/src/test/data/script_invalid.json @@ -1,8 +1,18 @@ [ +["", "DEPTH", "Test the test: we should have an empty stack after scriptSig evaluation"], +[" ", "DEPTH", "and multiple spaces should not change that."], +[" ", "DEPTH"], +[" ", "DEPTH"], + ["", ""], ["", "NOP"], +["", "NOP DEPTH"], ["NOP", ""], +["NOP", "DEPTH"], ["NOP","NOP"], +["NOP","NOP DEPTH"], + +["DEPTH", ""], ["0x4c01","0x01 NOP", "PUSHDATA1 with not enough bytes"], ["0x4d0200ff","0x01 NOP", "PUSHDATA2 with not enough bytes"], |