aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-02 22:26:47 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-02 22:26:47 +0800
commit3c71506022a827f37916f981a57e3ad8cc0c5abb (patch)
treee13186f79b2566eebb4be3c95d5474ad72c6694e /test/utils
parent07c61b1f9b75ec6a4589438ec2dff8ee926cc0d3 (diff)
downloaddexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar.gz
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar.bz2
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar.lz
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar.xz
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.tar.zst
dexon-0x-contracts-3c71506022a827f37916f981a57e3ad8cc0c5abb.zip
Rename coinBase to coinbase
Diffstat (limited to 'test/utils')
-rw-r--r--test/utils/fill_scenarios.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/utils/fill_scenarios.ts b/test/utils/fill_scenarios.ts
index 706f3f281..8260b76ab 100644
--- a/test/utils/fill_scenarios.ts
+++ b/test/utils/fill_scenarios.ts
@@ -8,13 +8,13 @@ export class FillScenarios {
private zeroEx: ZeroEx;
private userAddresses: string[];
private tokens: Token[];
- private coinBase: string;
+ private coinbase: string;
private zrxTokenAddress: string;
constructor(zeroEx: ZeroEx, userAddresses: string[], tokens: Token[], zrxTokenAddress: string) {
this.zeroEx = zeroEx;
this.userAddresses = userAddresses;
this.tokens = tokens;
- this.coinBase = userAddresses[0];
+ this.coinbase = userAddresses[0];
this.zrxTokenAddress = zrxTokenAddress;
}
public async createFillableSignedOrderAsync(makerTokenAddress: string, takerTokenAddress: string,
@@ -57,17 +57,17 @@ export class FillScenarios {
makerAddress: string, takerAddress: string,
makerFillableAmount: BigNumber.BigNumber, takerFillableAmount: BigNumber.BigNumber,
feeRecepient: string, expirationUnixTimestampSec?: BigNumber.BigNumber): Promise<SignedOrder> {
- await this.zeroEx.token.transferAsync(makerTokenAddress, this.coinBase, makerAddress, makerFillableAmount);
+ await this.zeroEx.token.transferAsync(makerTokenAddress, this.coinbase, makerAddress, makerFillableAmount);
await this.zeroEx.token.setProxyAllowanceAsync(makerTokenAddress, makerAddress, makerFillableAmount);
- await this.zeroEx.token.transferAsync(takerTokenAddress, this.coinBase, takerAddress, takerFillableAmount);
+ await this.zeroEx.token.transferAsync(takerTokenAddress, this.coinbase, takerAddress, takerFillableAmount);
await this.zeroEx.token.setProxyAllowanceAsync(takerTokenAddress, takerAddress, takerFillableAmount);
if (!makerFee.isZero()) {
- await this.zeroEx.token.transferAsync(this.zrxTokenAddress, this.coinBase, makerAddress, makerFee);
+ await this.zeroEx.token.transferAsync(this.zrxTokenAddress, this.coinbase, makerAddress, makerFee);
await this.zeroEx.token.setProxyAllowanceAsync(this.zrxTokenAddress, makerAddress, makerFee);
}
if (!takerFee.isZero()) {
- await this.zeroEx.token.transferAsync(this.zrxTokenAddress, this.coinBase, takerAddress, takerFee);
+ await this.zeroEx.token.transferAsync(this.zrxTokenAddress, this.coinbase, takerAddress, takerFee);
await this.zeroEx.token.setProxyAllowanceAsync(this.zrxTokenAddress, takerAddress, takerFee);
}