File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
server/routes/backend-wallet Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ export const importBackendWallet = async (fastify: FastifyInstance) => {
195
195
}
196
196
197
197
// TODO: with next breaking change, only require GCP KMS resource path
198
- // import endoint does not currently have resource path in the request body
198
+ // import endpoint does not currently have resource path in the request body
199
199
// so we rely on the global configuration for these values
200
200
if (
201
201
! (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type CreateWalletDetailsParams = {
15
15
}
16
16
| {
17
17
type : "aws-kms" ;
18
- awsKmsKeyId ?: string ; // depcrecated and unused, todo: remove with next breaking change
18
+ awsKmsKeyId ?: string ; // deprecated and unused, todo: remove with next breaking change
19
19
awsKmsArn : string ;
20
20
21
21
awsKmsSecretAccessKey : string ; // will be encrypted and stored, pass plaintext to this function
@@ -24,10 +24,10 @@ type CreateWalletDetailsParams = {
24
24
| {
25
25
type : "gcp-kms" ;
26
26
gcpKmsResourcePath : string ;
27
- gcpKmsKeyRingId ?: string ; // depcrecated and unused, todo: remove with next breaking change
28
- gcpKmsKeyId ?: string ; // depcrecated and unused, todo: remove with next breaking change
29
- gcpKmsKeyVersionId ?: string ; // depcrecated and unused, todo: remove with next breaking change
30
- gcpKmsLocationId ?: string ; // depcrecated and unused, todo: remove with next breaking change
27
+ gcpKmsKeyRingId ?: string ; // deprecated and unused, todo: remove with next breaking change
28
+ gcpKmsKeyId ?: string ; // deprecated and unused, todo: remove with next breaking change
29
+ gcpKmsKeyVersionId ?: string ; // deprecated and unused, todo: remove with next breaking change
30
+ gcpKmsLocationId ?: string ; // deprecated and unused, todo: remove with next breaking change
31
31
32
32
gcpApplicationCredentialPrivateKey : string ; // will be encrypted and stored, pass plaintext to this function
33
33
gcpApplicationCredentialEmail : string ;
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export type QueuedTransactionParams = {
36
36
* Encodes a transaction to generate data, and inserts it into the transaction queue using the insertTransaction()
37
37
*
38
38
* Note:
39
- * - functionName must be be provided to populate the functionName field in the queued transaction
39
+ * - functionName must be provided to populate the functionName field in the queued transaction
40
40
* - value and chain details are resolved from the transaction
41
41
*/
42
42
export async function queueTransaction ( args : QueuedTransactionParams ) {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class SendTransactionQueue {
19
19
} ,
20
20
} ) ;
21
21
22
- // Allow enqueing the same queueId for multiple retries.
22
+ // Allow enqueuing the same queueId for multiple retries.
23
23
static jobId = ( data : SendTransactionData ) =>
24
24
`${ data . queueId } .${ data . resendCount } ` ;
25
25
You can’t perform that action at this time.
0 commit comments