Skip to content

Commit

Permalink
Merge pull request #600 from MatrixAI/feature-websocket_client-encaps…
Browse files Browse the repository at this point in the history
…ulation

Adding privateKeyPath back to PolykeyAgent
  • Loading branch information
addievo authored Oct 24, 2023
2 parents 5b01c9e + 6109fa6 commit 9f52ca0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/PolykeyAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { DeepPartial, FileSystem } from './types';
import type { PolykeyWorkerManagerInterface } from './workers/types';
import type { TLSConfig } from './network/types';
import type { SeedNodes } from './nodes/types';
import type { Key, PasswordOpsLimit, PasswordMemLimit } from './keys/types';
import type { Key, PasswordOpsLimit, PasswordMemLimit, PrivateKey } from "./keys/types";
import path from 'path';
import process from 'process';
import Logger from '@matrixai/logger';
Expand Down Expand Up @@ -61,6 +61,8 @@ type PolykeyAgentOptions = {
certDuration: number;
certRenewLeadTime: number;
recoveryCode: string;
privateKeyPath: string;
privateKey: PrivateKey;
};
client: {
keepAliveTimeoutTime: number;
Expand Down

0 comments on commit 9f52ca0

Please sign in to comment.