Merge pull request #1807 from Brice-W/fix-group-update-issue

Fix group key pair cache issue
pull/1811/head
Audric Ackermann 4 years ago committed by GitHub
commit 6bf95a47e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,7 +51,7 @@ export async function getAllCachedECKeyPair(groupPubKey: string) {
cacheOfClosedGroupKeyPairs.set(groupPubKey, keyPairsFound);
}
return keyPairsFound;
return keyPairsFound.slice();
}
/**

Loading…
Cancel
Save