Variable rename for clarity

This commit is contained in:
Fabio Berger
2018-06-13 13:11:45 +02:00
parent 7e78f5941a
commit 78dcb87a75

View File

@@ -33,8 +33,8 @@ export class ExchangeWrapper {
params.signature,
{ from },
);
const tx = await this._logDecoder.getTxWithDecodedLogsAsync(txHash);
return tx;
const txReceipt = await this._logDecoder.getTxWithDecodedLogsAsync(txHash);
return txReceipt;
}
public async cancelOrderAsync(signedOrder: SignedOrder, from: string): Promise<TransactionReceiptWithDecodedLogs> {
const params = orderUtils.createCancel(signedOrder);