Skip to content

Commit 683096a

Browse files
committed
fix: backend tests
1 parent 0a9755b commit 683096a

File tree

1 file changed

+1
-1
lines changed
  • packages/backend/src/open_payments/payment/outgoing

1 file changed

+1
-1
lines changed

packages/backend/src/open_payments/payment/outgoing/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export class OutgoingPayment
213213
const decipher = createDecipheriv(
214214
'aes-256-gcm',
215215
Uint8Array.from(Buffer.from(key, 'base64')),
216-
Uint8Array.from(Buffer.from(iv, 'base64'))
216+
iv
217217
)
218218
decipher.setAuthTag(Uint8Array.from(Buffer.from(tag, 'base64')))
219219
let decryptedDataToTransmit = decipher.update(cipherText, 'base64', 'utf8')

0 commit comments

Comments
 (0)