Skip to content

Commit

Permalink
fix: remove print line
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneWallet committed Dec 13, 2024
1 parent 333e87f commit 1e9962f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mxops/utils/wallets.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def generate_pem_wallet(shard: Optional[int] = None) -> Tuple[UserPEM, Address]:
public_key = secret_key.generate_public_key()
address = Address(public_key.buffer, "erd")
address_shard = get_shard_of_pubkey(address.pubkey)
print("found shard", address_shard)
if shard is None or address_shard == shard:
return UserPEM(label=address.bech32(), secret_key=secret_key), address
k_iter += 1
Expand Down

0 comments on commit 1e9962f

Please sign in to comment.