Skip to content

Commit

Permalink
loadtest config
Browse files Browse the repository at this point in the history
  • Loading branch information
dvush committed Mar 3, 2020
1 parent ad33391 commit d9763be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ Cargo.lock
/tmp
/volumes
/logs
/loadtest-config

.ipynb_checkpoints
6 changes: 3 additions & 3 deletions js/tests/simple-integration-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ async function moveFunds(contract: Contract, ethProxy: ETHProxy, depositWallet:
const syncWalletRich = await Wallet.fromEthSigner(ethWallet, syncProvider);

const syncWalletSigner = ethers.Wallet.createRandom().connect(ethersProvider);
await (await ethWallet.sendTransaction({to: syncWalletSigner.address, value: parseEther("0.5")}));
await (await ethWallet.sendTransaction({to: syncWalletSigner.address, value: parseEther("0.01")}));
const syncWallet = await Wallet.fromEthSigner(
syncWalletSigner,
syncProvider,
Expand All @@ -191,14 +191,14 @@ async function moveFunds(contract: Contract, ethProxy: ETHProxy, depositWallet:
);

const ethWallet2 = ethers.Wallet.createRandom().connect(ethersProvider);
await (await ethWallet.sendTransaction({to: ethWallet2.address, value: parseEther("0.5")}));
await (await ethWallet.sendTransaction({to: ethWallet2.address, value: parseEther("0.01")}));
const syncWallet2 = await Wallet.fromEthSigner(
ethWallet2,
syncProvider,
);

const ethWallet3 = ethers.Wallet.createRandom().connect(ethersProvider);
await (await ethWallet.sendTransaction({to: ethWallet3.address, value: parseEther("0.05")}));
await (await ethWallet.sendTransaction({to: ethWallet3.address, value: parseEther("0.01")}));
const syncWallet3 = await Wallet.fromEthSigner(
ethWallet3,
syncProvider,
Expand Down

0 comments on commit d9763be

Please sign in to comment.