Skip to content

Commit

Permalink
Merge pull request #136 from golemfactory/kek/default-holesky
Browse files Browse the repository at this point in the history
Kek/default holesky
  • Loading branch information
kamirr authored May 13, 2024
2 parents 627835b + 876260c commit 1a14b35
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ python -m golem find-node --runtime vm --timeout 1m # stops after 60 seconds
python -m golem allocation list

python -m golem allocation new 1
python -m golem allocation new 2 --driver erc20 --network goerli
python -m golem allocation new 2 --driver erc20 --network holesky

python -m golem allocation clean
```
Expand Down
2 changes: 1 addition & 1 deletion examples/cli_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ printf "\n*** ALLOCATION NEW ***\n"
python3 -m golem allocation new 1

printf "\n*** ALLOCATION NEW ***\n"
python3 -m golem allocation new 2 --driver erc20 --network goerli
python3 -m golem allocation new 2 --driver erc20 --network holesky

printf "\n*** ALLOCATION LIST ***\n"
python3 -m golem allocation list
Expand Down
2 changes: 1 addition & 1 deletion examples/managers/mid_agreement_payments.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
WORK_RUN_TIME = timedelta(minutes=60)


async def print_yagna_payment_status(yagna_path="yagna", network="goerli"):
async def print_yagna_payment_status(yagna_path="yagna", network="holesky"):
process = await asyncio.create_subprocess_exec(
yagna_path,
"payment",
Expand Down
2 changes: 1 addition & 1 deletion golem/payload/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
PROP_USAGE_VECTOR = "golem.com.usage.vector"

DEFAULT_PAYMENT_DRIVER: str = getenv("YAGNA_PAYMENT_DRIVER", "erc20").lower()
DEFAULT_PAYMENT_NETWORK: str = getenv("YAGNA_PAYMENT_NETWORK", "goerli").lower()
DEFAULT_PAYMENT_NETWORK: str = getenv("YAGNA_PAYMENT_NETWORK", "holesky").lower()

DEFAULT_LIFETIME = timedelta(minutes=30)
DEFAULT_SUBNET: str = getenv("YAGNA_SUBNET", "public")
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

source /tmp/goth_interactive.env
YAGNA_PAYMENT_NETWORK=goerli pytest -sv tests/integration
YAGNA_PAYMENT_NETWORK=holesky pytest -sv tests/integration

0 comments on commit 1a14b35

Please sign in to comment.