Skip to content

Commit 36c77fa

Browse files
committed
changed balance from float to int
1 parent 9e94e10 commit 36c77fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokenomics_decentralization/analyze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_entries(ledger, date, filename):
9797
next(csv_reader)
9898
clustered_balances = defaultdict(int)
9999
for line in csv_reader:
100-
address, balance = line[0], float(line[-1])
100+
address, balance = line[0], int(line[-1])
101101
if address in special_addresses:
102102
continue
103103
entity, is_contract = db_hlp.get_address_entity(conn, address)

0 commit comments

Comments
 (0)