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

Commit

Permalink
Address renames from #466 review
Browse files Browse the repository at this point in the history
  • Loading branch information
kerzhner committed May 9, 2019
1 parent be9aba4 commit 3c5f5c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ describe('adjudicator listener', () => {
const eventCallback = async eventType => {
const postEventHoldings = await getHoldings();

const eventDeposit = bigNumberify(postEventHoldings).sub(bigNumberify(preEventHoldings));
expect(eventDeposit.toNumber()).toBeGreaterThanOrEqual(5);
const depositedAmount = bigNumberify(postEventHoldings).sub(bigNumberify(preEventHoldings));
expect(depositedAmount.toNumber()).toBeGreaterThanOrEqual(5);
done();
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function createDepositTransaction(destination: string, DepositLevel: string) {
};
}

export async function depositContract(
export async function depositIntoContract(
provider: ethers.providers.JsonRpcProvider,
participant: string,
amount = bigNumberify(5).toHexString(),
Expand Down

0 comments on commit 3c5f5c4

Please sign in to comment.