Skip to content

Commit

Permalink
Add initial balance to new project config so that dev accounts can be…
Browse files Browse the repository at this point in the history
… created
  • Loading branch information
janedegtiareva committed Jul 9, 2019
1 parent f14f84a commit 05c48de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion blank_project/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@
networkId: 'local',
nodeUrl: 'http://localhost:3030',
keyPath: '~/.near/validator_key.json',
contractName: CONTRACT_NAME
contractName: CONTRACT_NAME,
initialBalance: 100000,
};
case 'test':
return {
networkId: 'local',
nodeUrl: 'http://localhost:3030',
contractName: CONTRACT_NAME,
masterAccount: 'test.near',
initialBalance: 100000,
};
case 'test-remote':
case 'ci':
Expand Down

0 comments on commit 05c48de

Please sign in to comment.