Skip to content

Commit 8be96ba

Browse files
committed
fix: correct logging of proxy admin owner by removing .address reference
1 parent d79458a commit 8be96ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sharing-smart-contract/ignition/modules/DataProtectorSharingModule.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = buildModule('DataProtectorSharingModule', (m) => {
1414
// Use admin account if provided (index 1), otherwise fall back to deployer account (index 0)
1515
const proxyAdminOwner = env.ADMIN_PRIVATE_KEY ? m.getAccount(1) : m.getAccount(0);
1616
console.log(
17-
`Using proxy admin owner: ${proxyAdminOwner.address} (index: ${env.ADMIN_PRIVATE_KEY ? 1 : 0})`,
17+
`Using proxy admin owner: ${proxyAdminOwner} (index: ${env.ADMIN_PRIVATE_KEY ? 1 : 0})`,
1818
);
1919
const pocoAddress = env.POCO_ADDRESS || defaultPocoAddress;
2020
const datasetRegistryAddress = env.DATASET_REGISTRY_ADDRESS || defaultDatasetRegistryAddress;

0 commit comments

Comments
 (0)