Skip to content
Snippets Groups Projects
Commit 92f9bc09 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

fix: do not convert pubkey to address, let Duniter do it depending on the network

parent 0cacfe21
Branches
No related tags found
1 merge request!4import data from Duniter 1.8 leveldb database
...@@ -105,7 +105,7 @@ def get_identities_and_wallets(start_timestamp: int, leveldb_path: str) -> tuple ...@@ -105,7 +105,7 @@ def get_identities_and_wallets(start_timestamp: int, leveldb_path: str) -> tuple
# TODO make sure that index respects order of arrival # TODO make sure that index respects order of arrival
# Get identities names by pubkey # Get identities names by pubkey
for pubkey, identity in identities_repository: for pubkey, identity in identities_repository:
address = v1_pubkey_to_v2_address(pubkey) address = pubkey
index = identity["wotb_id"] + 1 index = identity["wotb_id"] + 1
uid = identity["uid"] uid = identity["uid"]
is_member = identity["member"] is_member = identity["member"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment