Skip to content

Commit 7d616db

Browse files
committed
fix: update variable assignment for dataprotectorSharingContractAddress in fillCollection.js
1 parent 1ef22f8 commit 7d616db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/sharing-smart-contract/scripts/fillCollection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const { ethers } = pkg;
1010
const rpcURL = pkg.network.config.url;
1111

1212
async function main() {
13-
const { dataprotectorSharingContractAddress } = env;
13+
const dataprotectorSharingContractAddress = env.DATA_PROTECTOR_SHARING_ADDRESS;
1414

1515
console.log('Filling Contract at : ', dataprotectorSharingContractAddress);
1616
const [owner] = await ethers.getSigners();

packages/sharing-smart-contract/scripts/updateEnv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import env from '../config/env.js';
33
const { ethers } = pkg;
44

55
async function main() {
6-
const { dataprotectorSharingContractAddress } = env;
6+
const dataprotectorSharingContractAddress = env.DATA_PROTECTOR_SHARING_ADDRESS;
77
const newResultStorageProvider = 'ipfs';
88

99
console.log(

0 commit comments

Comments
 (0)