Skip to content

Commit

Permalink
fix coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
patitonar committed Nov 22, 2019
1 parent 7fdac53 commit ede2c50
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions truffle-config.js
Expand Up @@ -29,8 +29,52 @@ if (process.env.SOLIDITY_COVERAGE === 'true') {
})
provider.addProvider(global.coverageSubprovider)
const ganacheSubprovider = new GanacheSubprovider({
default_balance_ether: '1000000000000000000000000',
total_accounts: 11,
accounts: [
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501200',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501201',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501202',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501203',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501204',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501205',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501206',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501207',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501208',
balance: '1000000000000000000000000'
},
{
secretKey: '0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501209',
balance: '1000000000000000000000000'
},
{
secretKey: '0x19fba401d77e4113b15095e9aa7117bcd25adcfac7f6111f8298894eef443600',
balance: '1000000000000000000000000'
}
],
port: 8545
})
provider.addProvider(ganacheSubprovider)
Expand Down

0 comments on commit ede2c50

Please sign in to comment.