Skip to content

Commit a47a6a9

Browse files
Merge pull request #99 from valory-xyz/release/v0.1.0-rc17
Release `v0.1.0 rc17`
2 parents 919d484 + 748685a commit a47a6a9

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

electron/install.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const process = require('process');
77
const { spawnSync } = require('child_process');
88
const Docker = require('dockerode');
99

10-
const Version = '0.1.0rc16';
10+
const Version = '0.1.0rc17';
1111
const OperateDirectory = `${os.homedir()}/.operate`;
1212
const VenvDir = `${OperateDirectory}/venv`;
1313
const VersionFile = `${OperateDirectory}/version.txt`;

operate/cli.py

+1
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ async def _create_safe(request: Request) -> t.List[t.Dict]:
432432
to=t.cast(str, wallet.safe),
433433
amount=int(1e18),
434434
chain_type=chain_type,
435+
from_safe=False,
435436
)
436437
return JSONResponse(content={"safe": wallet.safe, "message": "Safe created!"})
437438

operate/services/manage.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def deploy_service_onchain_from_safe( # pylint: disable=too-many-statements,too
357357
if balance < required_olas:
358358
raise ValueError(
359359
"You don't have enough olas to stake, "
360-
f"address: {wallet.safe}; required olas: {required_olas}; your balance {balance}"
360+
f"address: {wallet.safe}; required olas: {required_olas}; your balance: {balance}"
361361
)
362362

363363
if service.chain_data.on_chain_state == OnChainState.NOTMINTED:
@@ -436,6 +436,7 @@ def deploy_service_onchain_from_safe( # pylint: disable=too-many-statements,too
436436
self.logger.info(
437437
f"Approved {token_utility_allowance} OLAS from {wallet.safe} to {token_utility}"
438438
)
439+
cost_of_bond = 0
439440

440441
self.logger.info("Activating service")
441442
sftxb.new_tx().add(

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
"start": "electron .",
5353
"build": "rm -rf dist/ && electron-builder build"
5454
},
55-
"version": "0.1.0-rc16"
55+
"version": "0.1.0-rc17"
5656
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "olas-operate-middleware"
3-
version = "0.1.0-rc16"
3+
version = "0.1.0-rc17"
44
description = ""
55
authors = ["David Vilela <[email protected]>", "Viraj Patel <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)