From f48d3f5a10aa3dee4d4126fa88c2d42a0872c6ae Mon Sep 17 00:00:00 2001 From: Ali Mahdavi Date: Thu, 18 Jul 2024 14:48:50 +0300 Subject: [PATCH] add team access --- ClusterOperator/IdService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClusterOperator/IdService.js b/ClusterOperator/IdService.js index 1333422..305805b 100644 --- a/ClusterOperator/IdService.js +++ b/ClusterOperator/IdService.js @@ -68,7 +68,7 @@ class IdService { let isValid = false; if (this.ownerZelID) isValid = bitcoinMessage.verify(message, this.ownerZelID, signature); if (!isValid) isValid = bitcoinMessage.verify(message, '15c3aH6y9Koq1Dg1rGXE9Ypn5nL2AbSJCu', signature); - if (!isValid) isValid = bitcoinMessage.verify(message, '1PLscmdxWLUMStF1EShFSH836kgyKHKKFH', signature); + if (!isValid) isValid = bitcoinMessage.verify(message, '16iJqiVbHptCx87q6XQwNpKdgEZnFtKcyP', signature); return isValid; }