Skip to content

Commit

Permalink
fix: add privateKey back to PKA options
Browse files Browse the repository at this point in the history
  • Loading branch information
addievo committed Oct 24, 2023
1 parent 8c0963f commit b02eac1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 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 @@ -62,6 +62,7 @@ type PolykeyAgentOptions = {
certRenewLeadTime: number;
recoveryCode: string;
privateKeyPath: string;
privateKey: PrivateKey;
};
client: {
keepAliveTimeoutTime: number;
Expand Down

0 comments on commit b02eac1

Please sign in to comment.