programmingbitcoin
programmingbitcoin copied to clipboard
Chapter 6 Script.py raw_serialize()
In chapter 6, we code the Script.raw_serialize() method, and we cover every valid length of an element except 75. Should the first elif be Elif length >= 75 ? I read that 75 is an element, so it should belong here right?

The first elif is OK but the line if length < 75: should read if length <= 75:
See the issue #222 and Bitcoin Wiki