Depends on D17558
Details
Details
- Reviewers
- None
- Group Reviewers
Restricted Project
python test_runner.py
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Branch
- alp
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 32609 Build 64706: Build Diff electrum-tests Build 64705: arc lint + arc unit
Event Timeline
electrum/electrumabc/transaction.py | ||
---|---|---|
788 | OpCodes is an IntEnum, so in theory it is already an alias for int. But various code quality tools will not be happy if we pass an int instead of one of the enum values without this change, and some push opcodes (17 to 0x4e) are not explicitly listed. |
electrum/electrumabc/transaction.py | ||
---|---|---|
788 | correction: 0x01 to 0x4B (push n bytes, with 1 <= n <= 0x4B) |