diff --git a/backend/src/graphql/resolver/TransactionResolver.ts b/backend/src/graphql/resolver/TransactionResolver.ts index 4bf4e7a17..8fe1e8484 100644 --- a/backend/src/graphql/resolver/TransactionResolver.ts +++ b/backend/src/graphql/resolver/TransactionResolver.ts @@ -373,7 +373,7 @@ export class TransactionResolver { // TODO: the detour over the public key is unnecessary const recipiantPublicKey = await getPublicKey(email) if (!recipiantPublicKey) { - throw new Error('recipiant not known') + throw new Error('recipient not known') } if (!isHexPublicKey(recipiantPublicKey)) { throw new Error('invalid recipiant public key')