Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
chore(test): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 4, 2024
1 parent bc19e31 commit 3105bf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ services:
HOST: arns-service
PORT: 3000
GATEWAY_HOST: ${GATEWAY_HOST:-arlocal}
WARP_GATEWAY_HOST: ${GATEWAY_HOST:-arlocal}
GATEWAY_PORT: ${GATEWAY_PORT:-1984}
GATEWAY_PROTOCOL: ${GATEWAY_PROTOCOL:-http}
BLOCKLISTED_CONTRACT_IDS: ${BLOCKLISTED_CONTRACT_IDS:-fbU8Y4NMKKzP4rmAYeYj6tDrVDo9XNbdyq5IZPA31WQ}
Expand Down
2 changes: 1 addition & 1 deletion src/middleware/warp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ LoggerFactory.INST.logLevel(

// use arweave.net for warp for now
const warpArweave = Arweave.init({
host: 'arweave.net',
host: process.env.WARP_GATEWAY_HOST || 'arweave.net',
port: 443,
protocol: 'https',
});
Expand Down

0 comments on commit 3105bf1

Please sign in to comment.