rename param
This commit is contained in:
@@ -219,8 +219,8 @@ export class ExchangeWrapper {
|
|||||||
const isCancelled = await this._exchange.cancelled.callAsync(orderHashHex);
|
const isCancelled = await this._exchange.cancelled.callAsync(orderHashHex);
|
||||||
return isCancelled;
|
return isCancelled;
|
||||||
}
|
}
|
||||||
public async getOrderEpochAsync(makerAddress: string, takerAddress: string): Promise<BigNumber> {
|
public async getOrderEpochAsync(makerAddress: string, senderAddress: string): Promise<BigNumber> {
|
||||||
const orderEpoch = new BigNumber(await this._exchange.orderEpoch.callAsync(makerAddress, takerAddress));
|
const orderEpoch = new BigNumber(await this._exchange.orderEpoch.callAsync(makerAddress, senderAddress));
|
||||||
return orderEpoch;
|
return orderEpoch;
|
||||||
}
|
}
|
||||||
public async getOrderInfoAsync(signedOrder: SignedOrder): Promise<OrderInfo> {
|
public async getOrderInfoAsync(signedOrder: SignedOrder): Promise<OrderInfo> {
|
||||||
|
|||||||
Reference in New Issue
Block a user