Skip to content

Commit

Permalink
chore: formatters
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed May 31, 2024
1 parent d02b769 commit 0ffd75e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions operate/services/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,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 0ffd75e

Please sign in to comment.