Skip to content

Commit

Permalink
fix(provider): fix default worker_ipfs_multiaddr (#866)
Browse files Browse the repository at this point in the history
* fix(provider): fix default worker_ipfs_multiaddr

* Apply automatic changes
  • Loading branch information
justprosh authored Mar 19, 2024
1 parent 817fbed commit a256ae2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/configs/project/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,9 @@ async function getDefaultNoxConfigYAML(): Promise<LatestNoxConfigYAML> {
decider: {
deciderPeriodSec: 10,
workerIpfsMultiaddr:
env === "local" ? NOX_IPFS_MULTIADDR : "http://ipfs.fluence.dev",
env === "local"
? NOX_IPFS_MULTIADDR
: "/dns4/ipfs.fluence.dev/tcp/5001",
networkApiEndpoint: CHAIN_URLS_FOR_CONTAINERS[env],
matcherAddress: contractAddresses.market,
},
Expand Down

0 comments on commit a256ae2

Please sign in to comment.