Skip to content

Commit e4cb3f8

Browse files
committed
chore: Adjust dev env param for IPFS in external adapter
1 parent 25e680b commit e4cb3f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/external-adapter/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async function getSLAData(address): Promise<SLAData> {
2727
const web3 = new Web3(web3Uri);
2828
const slaContract = new web3.eth.Contract(SLAABI, address);
2929
const ipfsCID = await slaContract.methods.ipfsHash().call();
30-
console.log(`SLA IPFS url: ${process.env.IPFS_GATEWAY_URI}/ipfs/${ipfsCID}`);
30+
console.log(`SLA IPFS url: ${process.env.DEVELOP_IPFS_URI}/ipfs/${ipfsCID}`);
3131
const periodType = await slaContract.methods.periodType().call();
3232
const messengerAddress = await slaContract.methods.messengerAddress().call();
3333
const { data } = await axios.get(

0 commit comments

Comments
 (0)