Skip to content

Commit 6f84d1e

Browse files
committedFeb 8, 2024
Update publicKeys in bpiSubject
1 parent cc5c1c9 commit 6f84d1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎examples/bri-3/src/bri/identity/bpiSubjects/models/bpiSubject.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AutoMap } from '@automapper/classes';
22
import { v4 } from 'uuid';
33
import { BpiSubjectRole } from './bpiSubjectRole';
4-
import { KeyType, PublicKey } from './publicKey';
4+
import { PublicKeyType, PublicKey } from './publicKey';
55

66
export class BpiSubject {
77
@AutoMap()
@@ -44,7 +44,7 @@ export class BpiSubject {
4444
}
4545

4646
public updatePublicKey(newPk: PublicKey): void {
47-
this.publicKeys.map((key) =>
47+
this.publicKeys = this.publicKeys.map((key) =>
4848
key.type == newPk.type ? (key = newPk) : key,
4949
);
5050
}
@@ -55,7 +55,7 @@ export class BpiSubject {
5555

5656
public getBpiSubjectDid(): string {
5757
const ecdsaPublicKey = this.publicKeys.filter(
58-
(key) => key.type == KeyType.ECDSA,
58+
(key) => key.type == PublicKeyType.ECDSA,
5959
)[0];
6060
return `did:ethr:0x5:${ecdsaPublicKey.value}`;
6161
}

0 commit comments

Comments
 (0)
Please sign in to comment.