Add method to update group endorsements

This commit is contained in:
AsamK 2024-07-27 11:35:24 +02:00
parent 6ea373fbd5
commit a69a9b7b0e

View file

@ -82,6 +82,10 @@ public class GroupHelper {
return getGroup(groupId, false);
}
public void updateGroupSendEndorsements(GroupId groupId) {
getGroup(groupId, true);
}
public List<GroupInfo> getGroups() {
final var groups = account.getGroupStore().getGroups();
groups.forEach(group -> fillOrUpdateGroup(group, false));