Skip to content

Commit

Permalink
Update the error msg in requestRedemption
Browse files Browse the repository at this point in the history
Drop the dot `.` from the end of the error message.
  • Loading branch information
r-czajkowski committed Jul 6, 2023
1 parent e814eca commit dbd818e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/src/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ export class TBTCToken
): Promise<Hex> {
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()
Expand Down

0 comments on commit dbd818e

Please sign in to comment.