Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Nov 20, 2024
1 parent 91f9692 commit a5484a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const etherscanApiKey: () => Promise<string | undefined> = async () => {
}
};

export const privateKey = async (chainId: number, overridePrompt: string) => {
export const privateKey = async (chainId: number, overridePrompt?: string) => {
const res = await envVarOrPrompt({
title: `${overridePrompt ?? 'Enter an ETH private key'} (${chainIdName(chainId)})`,
isValid: (text) => {
Expand Down

0 comments on commit a5484a1

Please sign in to comment.