Skip to content

Commit 3ad4273

Browse files
committedMar 16, 2023
Fix Webpack issue (reported on discord).
1 parent 6315e78 commit 3ad4273

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎src.ts/contract/wrappers.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ export class EventLog extends Log {
3131
}
3232

3333
export class ContractTransactionReceipt extends TransactionReceipt {
34-
readonly #interface: Interface;
34+
readonly #iface: Interface;
3535

3636
constructor(iface: Interface, provider: Provider, tx: TransactionReceipt) {
3737
super(tx, provider);
38-
this.#interface = iface;
38+
this.#iface = iface;
3939
}
4040

4141
get logs(): Array<EventLog | Log> {
4242
return super.logs.map((log) => {
43-
const fragment = log.topics.length ? this.#interface.getEvent(log.topics[0]): null;
43+
const fragment = log.topics.length ? this.#iface.getEvent(log.topics[0]): null;
4444
if (fragment) {
45-
return new EventLog(log, this.#interface, fragment)
45+
return new EventLog(log, this.#iface, fragment)
4646
} else {
4747
return log;
4848
}
@@ -52,17 +52,17 @@ export class ContractTransactionReceipt extends TransactionReceipt {
5252
}
5353

5454
export class ContractTransactionResponse extends TransactionResponse {
55-
readonly #interface: Interface;
55+
readonly #iface: Interface;
5656

5757
constructor(iface: Interface, provider: Provider, tx: TransactionResponse) {
5858
super(tx, provider);
59-
this.#interface = iface;
59+
this.#iface = iface;
6060
}
6161

6262
async wait(confirms?: number): Promise<null | ContractTransactionReceipt> {
6363
const receipt = await super.wait();
6464
if (receipt == null) { return null; }
65-
return new ContractTransactionReceipt(this.#interface, this.provider, receipt);
65+
return new ContractTransactionReceipt(this.#iface, this.provider, receipt);
6666
}
6767
}
6868

0 commit comments

Comments
 (0)
Please sign in to comment.