Skip to content

Commit

Permalink
prettified
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwas1 committed Nov 13, 2023
1 parent 70b4b6c commit aa8ded4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ async function bootstrap() {
if (!existDir(process.env.EDV_CONFIG_DIR)) {
createDir(process.env.EDV_CONFIG_DIR);
}
const EDV_DID_FILE_PATH = `${process.env.EDV_CONFIG_DIR}/edv-did.json`
const EDV_DID_FILE_PATH = `${process.env.EDV_CONFIG_DIR}/edv-did.json`;
if (!existDir(EDV_DID_FILE_PATH)) {
store(kmsVaultWallet.didDocument, EDV_DID_FILE_PATH);
}

const EDV_KEY_FILE_PATH = `${process.env.EDV_CONFIG_DIR}/edv-keys.json`
const EDV_KEY_FILE_PATH = `${process.env.EDV_CONFIG_DIR}/edv-keys.json`;
if (!existDir(EDV_KEY_FILE_PATH)) {
store(kmsVaultWallet.keys, EDV_KEY_FILE_PATH);
}
Expand Down

0 comments on commit aa8ded4

Please sign in to comment.