Skip to content
This repository has been archived by the owner on Jun 10, 2019. It is now read-only.

Cloud Deployment Feature #62

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ history-db
state-db
operator-keystore

# Integration Testing
test-fixtures

# Vim
*.swp

Expand Down
2 changes: 1 addition & 1 deletion bin/plasma-chain-account.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ program
return
}
console.log('Created new account with address:', newAccount.address.green)
const keystorePath = path.join(keystoreDirectory, new Date().toISOString() + '--' + newAccount.address)
const keystorePath = path.join(keystoreDirectory, new Date().getTime() + '--' + newAccount.address)
console.log('Saving account to:', keystorePath.yellow)
fs.writeFileSync(keystorePath, newAccount.keystoreFile)
// Create new password file
Expand Down