From dbd818e25ed83e919b30f33cfd68b7f1d782c0e3 Mon Sep 17 00:00:00 2001 From: Rafal Czajkowski Date: Thu, 6 Jul 2023 14:00:30 +0200 Subject: [PATCH] Update the error msg in `requestRedemption` Drop the dot `.` from the end of the error message. --- typescript/src/ethereum.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/src/ethereum.ts b/typescript/src/ethereum.ts index 5f0eb6a68..dc217304e 100644 --- a/typescript/src/ethereum.ts +++ b/typescript/src/ethereum.ts @@ -1112,7 +1112,7 @@ export class TBTCToken ): Promise { const redeemer = await this._instance?.signer?.getAddress() if (!redeemer) { - throw new Error("Signer not provided.") + throw new Error("Signer not provided") } const vault = await this._instance.owner()