Skip to content

Commit 87a1e42

Browse files
authored
fix: always use Agent proxy when sending messages from SignifyGroupHab (#353)
This fixes delegated multisig rotation with KERIA and Signify multisig groups.
1 parent cc7fd04 commit 87a1e42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/keria/app/delegating.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,10 @@ def processPartialWitnessEscrow(self):
163163
print(f"Witness receipts complete, waiting for delegation approval.")
164164
if isinstance(hab, habbing.GroupHab):
165165
phab = hab.mhab
166-
elif hab.kever.sn > 0:
167-
phab = hab
168166
elif self.proxy is not None:
169167
phab = self.proxy
168+
elif hab.kever.sn > 0:
169+
phab = hab
170170
else:
171171
raise kering.ValidationError("no proxy to send messages for delegation")
172172

0 commit comments

Comments
 (0)