[m] Parsing simulatorAccounts using AccountParser .

This commit is contained in:
hodlbank 2018-08-06 20:28:16 +00:00
parent ab0a3b0735
commit 922a400b5b
1 changed files with 6 additions and 13 deletions

View File

@ -32,21 +32,14 @@ class Simulator {
cmds.push("--mnemonic \"" + (simulatorMnemonic) +"\"");
}
// the simulatorAccounts configuration overrides a mnemonic
// as ganache-cli documentation explains, the simulatorAccounts configuration overrides a mnemonic
let simulatorAccounts = this.blockchainConfig.simulatorAccounts || options.simulatorAccounts;
if (simulatorAccounts && simulatorAccounts.length > 0) {
simulatorAccounts.forEach((account, index) => {
let hexBalance = '0x8AC7230489E80000'; // 10 ether;
if (account.hexBalance) { // TODO: ensure it is 0x-prefixed hex
if (account.hexBalance.match(/0x[a-f0-9]+/i)) {
hexBalance = account.hexBalance;
} else {
this.logger.warn('Balance provided for the account #' + index + ' is not a valid hex number. Using 10 ether as a default.');
}
} else {
this.logger.warn('No balance has been provided for the account #' + index + '. Using 10 ether as a default.');
}
let cmd = '--account="' + account.privateKey + ','+hexBalance + '"';
let web3 = new (require('web3'))();
let AccountParser = require('../utils/accountParser.js');
let parsedAccounts = AccountParser.parseAccountsConfig(simulatorAccounts, web3, this.logger);
parsedAccounts.forEach((account) => {
let cmd = '--account="' + account.privateKey + ','+account.hexBalance + '"';
cmds.push(cmd);
});
}