diff --git a/.github/workflows/private-tangle-tests.yml b/.github/workflows/private-tangle-tests.yml index 186653b1c1..6fd9926640 100644 --- a/.github/workflows/private-tangle-tests.yml +++ b/.github/workflows/private-tangle-tests.yml @@ -62,6 +62,9 @@ jobs: uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' with: branch: add-action + protocol_parameters: .github/workflows/protocol_parameters.json + env: + COMPOSE_PROFILES: inx-faucet,inx-indexer,inx-mqtt - name: Start ledger nano uses: "./.github/actions/ledger-nano" @@ -74,3 +77,5 @@ jobs: uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action' with: branch: add-action + env: + COMPOSE_PROFILES: inx-faucet,inx-indexer,inx-mqtt diff --git a/.github/workflows/protocol_parameters.json b/.github/workflows/protocol_parameters.json index 139bd05c4d..996df0565b 100644 --- a/.github/workflows/protocol_parameters.json +++ b/.github/workflows/protocol_parameters.json @@ -1,7 +1,7 @@ { "version": 2, "networkName": "sandbox1", - "bech32HRP": "rms", + "bech32HRP": "snd", "minPoWScore": 0, "belowMaxDepth": 15, "rentStructure": { diff --git a/sdk/tests/wallet/common/constants.rs b/sdk/tests/wallet/common/constants.rs index d6f42ee747..e45c7138af 100644 --- a/sdk/tests/wallet/common/constants.rs +++ b/sdk/tests/wallet/common/constants.rs @@ -3,9 +3,9 @@ #![allow(dead_code)] -pub static NODE_LOCAL: &str = "http://localhost:14265"; +pub static NODE_LOCAL: &str = "http://localhost"; pub static NODE_OTHER: &str = "http://some.not.default.node:14265"; pub static DEFAULT_MNEMONIC: &str = "inhale gorilla deny three celery song category owner lottery rent author wealth penalty crawl hobby obtain glad warm early rain clutch slab august bleak"; -pub static FAUCET_URL: &str = "http://localhost:8091/api/enqueue"; +pub static FAUCET_URL: &str = "http://localhost/faucet/api/enqueue";