Skip to content

Commit

Permalink
Fix no self._payment_network param (#245)
Browse files Browse the repository at this point in the history
* Fix no self._payment_network param

* Bump version to 0.11.0a1
  • Loading branch information
lucekdudek authored May 22, 2024
1 parent 5e8ad09 commit d733736
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion golem-cluster.override.2-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ provider:
parameters:
node_config:
demand:
image_tag: "blueshade/ray-on-golem:0.11.0a0-py3.10.13-ray2.9.3"
image_tag: "blueshade/ray-on-golem:0.11.0a1-py3.10.13-ray2.9.3"
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 = "ray-on-golem"
version = "0.11.0a0"
version = "0.11.0a1"
description = "Golem Network integration with Ray"
authors = ["Golem Factory <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion ray_on_golem/provider/node_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _print_mainnet_onboarding_message(
cli_logger.newline()

with cli_logger.indented():
cli_logger.print(ONBOARDING_MESSAGE.get(self._payment_network), no_format=True)
cli_logger.print(ONBOARDING_MESSAGE.get(payment_network), no_format=True)
cli_logger.print("Your wallet:")

with cli_logger.indented():
Expand Down

0 comments on commit d733736

Please sign in to comment.