-
Notifications
You must be signed in to change notification settings - Fork 1
/
UTXO.py
36 lines (25 loc) · 756 Bytes
/
UTXO.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from functools import total_ordering
import sys
@total_ordering
class UTXO:
def __init__(self, txn_hash, index):
self.txn_hash = txn_hash
self.index = index
self.hash_index_tup = (txn_hash, index)
def __eq__(utxo_1, utxo_2):
if utxo_1.index == utxo_2.index and utxo_1.txn_hash == utxo_2.txn_hash:
return True
return False
def __lt__(utxo_1, utxo_2):
if utxo_1.index < utxo_2.index:
return True
elif utxo_1.index > utxo_2.index:
return False
else:
if len(utxo_1.txn_hash) < len(utxo_2.txn_hash):
return True
return False
def __hash__(self):
return hash(self.hash_index_tup)
def __sizeof__(self):
return sys.getsizeof(self.txn_hash) + sys.getsizeof(self.index) + sys.getsizeof(self.hash_index_tup)