Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/transaction-manager/src/transactions-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default class TransactionsFactory {
) {
const encryptedKey: EncryptionTypes.IEncryptedData = await cipherProvider.encrypt(
symmetricKey,
{ encryptionParams },
{ encryptionParams: encryptionParam },
);
return { encryptedKey, multiFormattedIdentity };
} else {
Expand Down Expand Up @@ -219,7 +219,7 @@ export default class TransactionsFactory {
) {
const encryptedKey: EncryptionTypes.IEncryptedData = await cipherProvider.encrypt(
channelKey.key,
{ encryptionParams },
{ encryptionParams: encryptionParam },
);
return { encryptedKey, multiFormattedIdentity };
} else {
Expand Down
Loading