Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Nov 23, 2023
1 parent 775e34d commit cbbf0f5
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export async function writeConfigs() {
{
name: "chainName",
type: "text",
message: "Enter chain name (without spaces, use underscore instead of spaces)",
message:
"Enter chain name (without spaces, use underscore instead of spaces)",
},
{
name: "isMainnet",
Expand Down Expand Up @@ -178,11 +179,7 @@ export async function writeConfigs() {
if (configResponse.pk && configResponse.pk.length > 64)
pk = configResponse.pk.substring(2);

await buildEnvFile(
response.rpc,
roleOwners.ownerAddress,
pk
);
await buildEnvFile(response.rpc, roleOwners.ownerAddress, pk);
}

const validateRpc = async (rpcUrl: string) => {
Expand Down

0 comments on commit cbbf0f5

Please sign in to comment.