Skip to content

Commit

Permalink
fix: agent identifier (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro-Morales authored Oct 13, 2023
1 parent b80f74c commit 24ca605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def identifier(self) -> str:
str: The agent's identifier.
"""
prefix = TESTNET_PREFIX if self._test else MAINNET_PREFIX
return prefix + self._identity.address
return prefix + "://" + self._identity.address

@property
def wallet(self) -> LocalWallet:
Expand Down

0 comments on commit 24ca605

Please sign in to comment.