Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro-Morales committed Jun 22, 2023
1 parent 2238038 commit 33df39d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/uagents/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class AgentNetwork(Enum):
LEDGER_PREFIX = "fetch"
USER_PREFIX = "user"
CONTRACT_ALMANAC = "fetch1h5rhtj5m6dqjmufj5m3t4mq6l7cnd8dvaxclwmrk6tfdm0gy3lmszksf0s"
CONTRACT_NAME_SERVICE = "fetch1yrf4xpglq02fzj50m9wn44qdq89a5vr0ufa42qa506uhwal4n79s99sp87"
CONTRACT_NAME_SERVICE = (
"fetch1yrf4xpglq02fzj50m9wn44qdq89a5vr0ufa42qa506uhwal4n79s99sp87"
)
REGISTRATION_FEE = 500000000000000000
REGISTRATION_DENOM = "atestfet"
MIN_REGISTRATION_TIME = 3600
Expand Down
4 changes: 3 additions & 1 deletion src/uagents/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ def get_registration_tx(self, name: str, wallet_address: str, agent_address: str
registration_msg = self._get_registration_msg(name, agent_address)

transaction.add_message(
create_cosmwasm_execute_msg(wallet_address, CONTRACT_NAME_SERVICE, ownership_msg)
create_cosmwasm_execute_msg(
wallet_address, CONTRACT_NAME_SERVICE, ownership_msg
)
)
transaction.add_message(
create_cosmwasm_execute_msg(
Expand Down

0 comments on commit 33df39d

Please sign in to comment.