Skip to content

Commit

Permalink
chore: formatters
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed May 30, 2024
1 parent 9ecce1b commit 91ec074
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion operate/services/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def deploy_service_onchain_from_safe( # pylint: disable=too-many-statements,too
if service.chain_data.on_chain_state == OnChainState.ACTIVATED:
cost_of_bond = user_params.cost_of_bond
if user_params.use_staking:
token_utility = "0xa45E64d13A30a51b91ae0eb182e88a40e9b18eD8" # nosec
token_utility = "0xa45E64d13A30a51b91ae0eb182e88a40e9b18eD8" # nosec
olas_token = "0xcE11e14225575945b8E6Dc0D4F2dD4C570f79d9f" # nosec
self.logger.info(
f"Approving OLAS as bonding token from {wallet.safe} to {token_utility}"
Expand Down
12 changes: 6 additions & 6 deletions operate/services/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,12 @@ def _start_agent(working_dir: Path) -> None:
env["CONNECTION_ABCI_CONFIG_PORT"] = "26658"

# Fix tendermint connection params
env["SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_TENDERMINT_COM_URL"] = (
"http://localhost:8080"
)
env["SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_TENDERMINT_URL"] = (
"http://localhost:26657"
)
env[
"SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_TENDERMINT_COM_URL"
] = "http://localhost:8080"
env[
"SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_TENDERMINT_URL"
] = "http://localhost:26657"
env["SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_TENDERMINT_P2P_URL"] = "localhost:26656"

process = subprocess.Popen( # pylint: disable=consider-using-with # nosec
Expand Down

0 comments on commit 91ec074

Please sign in to comment.