Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for tm mac path
Browse files Browse the repository at this point in the history
solarw committed Dec 18, 2024
1 parent 1baced9 commit 4b012d2
Showing 3 changed files with 15 additions and 11 deletions.
22 changes: 13 additions & 9 deletions operate/services/service.py
Original file line number Diff line number Diff line change
@@ -106,50 +106,50 @@
"name": "Gnosis ledger RPC",
"description": "",
"value": "",
"provision_type": "computed"
"provision_type": "computed",
},
"STAKING_CONTRACT_ADDRESS": {
"name": "Staking contract address",
"description": "",
"value": "",
"provision_type": "computed"
"provision_type": "computed",
},
"MECH_ACTIVITY_CHECKER_CONTRACT": {
"name": "Mech activity checker contract",
"description": "",
"value": "",
"provision_type": "computed"
"provision_type": "computed",
},
"MECH_CONTRACT_ADDRESS": {
"name": "Mech contract address",
"description": "",
"value": "",
"provision_type": "computed"
"provision_type": "computed",
},
"MECH_REQUEST_PRICE": {
"name": "Mech request price",
"description": "",
"value": "10000000000000000",
"provision_type": "computed"
"provision_type": "computed",
},
"USE_MECH_MARKETPLACE": {
"name": "Use Mech marketplace",
"description": "",
"value": "False",
"provision_type": "computed"
"provision_type": "computed",
},
"REQUESTER_STAKING_INSTANCE_ADDRESS": {
"name": "Requester staking instance address",
"description": "",
"value": "",
"provision_type": "computed"
"provision_type": "computed",
},
"PRIORITY_MECH_ADDRESS": {
"name": "Priority Mech address",
"description": "",
"value": "",
"provision_type": "computed"
}
"provision_type": "computed",
},
}


@@ -304,6 +304,10 @@ def generate_config_tendermint(self) -> "HostDeploymentGenerator":
shutil.which("tendermint"),
)
# TODO: move all platform related things to a dedicated file

tendermint_executable = str(
Path(os.path.dirname(sys.executable)) / "tendermint"
)
if platform.system() == "Windows":
tendermint_executable = str(
Path(os.path.dirname(sys.executable)) / "tendermint.exe"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@
"start:frontend": "cd frontend && yarn start",
"test:frontend": "cd frontend && yarn test"
},
"version": "0.2.0-rc39",
"version": "0.2.0-rc42",
"engine": {
"node": ">=20",
"yarn": ">=1.22.0",
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "olas-operate-middleware"
version = "0.2.0-rc39"
version = "0.2.0-rc42"
description = ""
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
readme = "README.md"

0 comments on commit 4b012d2

Please sign in to comment.