Skip to content

Commit

Permalink
Removed unused attributes from Input
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Le Calvez committed Apr 8, 2016
1 parent b28fe23 commit f3a9069
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions blockchain_parser/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ class Input(object):
"""Represents a transaction input"""

def __init__(self, raw_hex):
self.hex = None
self._transaction_hash = None
self._transaction_index = None
self._script_hex = None
self._script = None
self._sequence_number = None
self.size = None

self._script_length, varint_length = decode_varint(raw_hex[36:])
self._script_start = 36 + varint_length
Expand Down

0 comments on commit f3a9069

Please sign in to comment.