File tree 1 file changed +3
-3
lines changed
examples/bri-3/src/bri/identity/bpiSubjects/models
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { AutoMap } from '@automapper/classes' ;
2
2
import { v4 } from 'uuid' ;
3
3
import { BpiSubjectRole } from './bpiSubjectRole' ;
4
- import { KeyType , PublicKey } from './publicKey' ;
4
+ import { PublicKeyType , PublicKey } from './publicKey' ;
5
5
6
6
export class BpiSubject {
7
7
@AutoMap ( )
@@ -44,7 +44,7 @@ export class BpiSubject {
44
44
}
45
45
46
46
public updatePublicKey ( newPk : PublicKey ) : void {
47
- this . publicKeys . map ( ( key ) =>
47
+ this . publicKeys = this . publicKeys . map ( ( key ) =>
48
48
key . type == newPk . type ? ( key = newPk ) : key ,
49
49
) ;
50
50
}
@@ -55,7 +55,7 @@ export class BpiSubject {
55
55
56
56
public getBpiSubjectDid ( ) : string {
57
57
const ecdsaPublicKey = this . publicKeys . filter (
58
- ( key ) => key . type == KeyType . ECDSA ,
58
+ ( key ) => key . type == PublicKeyType . ECDSA ,
59
59
) [ 0 ] ;
60
60
return `did:ethr:0x5:${ ecdsaPublicKey . value } ` ;
61
61
}
You can’t perform that action at this time.
0 commit comments