From a97c533f397b89ed588c1cbf13ef76decf5b9e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renaud?= Date: Wed, 20 Mar 2024 14:27:55 +0100 Subject: [PATCH] show safe address in error message --- governance/scripts/getters/unlock-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/governance/scripts/getters/unlock-info.js b/governance/scripts/getters/unlock-info.js index 160736cf7ff..0f9d7078a8c 100644 --- a/governance/scripts/getters/unlock-info.js +++ b/governance/scripts/getters/unlock-info.js @@ -46,7 +46,7 @@ async function main({ unlockAddress, quiet = false }) { try { nbOwners = (await getOwners({ safeAddress: unlockOwner })).length } catch (error) { - errorLog(`Unlock owner is not the team multisig !`) + errorLog(`Unlock owner is not the team multisig (${safeAddress})!`) } if (nbOwners && !isMultisig) {