Skip to content

Commit 4f9a9b8

Browse files
committed
chore: fix group-provision
2 parents fa04e99 + 73418bf commit 4f9a9b8

File tree

1 file changed

+0
-12
lines changed
  • platforms/group-charter-manager-api/src/web3adapter/watchers

1 file changed

+0
-12
lines changed

platforms/group-charter-manager-api/src/web3adapter/watchers/subscriber.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -179,18 +179,6 @@ export class PostgresSubscriber implements EntitySubscriberInterface {
179179
if (fullEntity) {
180180
console.log("✅ Full entity loaded:", { id: fullEntity.id, tableName: event.metadata.tableName });
181181

182-
// Check if this is a Group entity and if charter was just added (not updated)
183-
console.log("🔍 Checking eVault conditions for entity:", {
184-
entityName,
185-
isGroup: entityName === "Group",
186-
hasCharter: !!fullEntity.charter,
187-
charterContent: fullEntity.charter,
188-
charterTrimmed: fullEntity.charter ? fullEntity.charter.trim() : null,
189-
charterNotEmpty: fullEntity.charter ? fullEntity.charter.trim() !== "" : false,
190-
hasEname: !!fullEntity.ename,
191-
enameValue: fullEntity.ename
192-
});
193-
194182
if (entityName === "Group" && fullEntity.charter && fullEntity.charter.trim() !== "") {
195183
console.log("✅ Group entity with charter detected");
196184

0 commit comments

Comments
 (0)