add join support

This commit is contained in:
CaiHQ 2022-06-28 19:49:54 +08:00
parent 2758eb42e4
commit ea71e8a358

View File

@ -1307,6 +1307,11 @@ public class CMActions implements OnHashCallback {
LOGGER.info("pruneKilledContract!!!");
Set<ContractMeta> toRemove = new HashSet<>();
for (ContractMeta meta : map.values()) {
if (meta.getStatus() == null) {
toRemove.add(meta);
continue;
}
if (meta.getStatus().equals(ContractStatusEnum.KILLED))
toRemove.add(meta);
if (meta.getName() == null || meta.getName().length() == 0)